代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/218418/14921069
cpp p3-165.cpp
#include
#include
//main()函数
void main( void )
{
//声明字符数组
char string[]="This is a test.";
int n;
//获得字符串的长度
cout
www.eeworm.com/read/218418/14921513
cpp p1-41.cpp
#include
#define size 5
main()
{
//声明变量
int i,j;
float t,a[size];
//从键盘上为数组赋值
for (i=0;i
www.eeworm.com/read/116039/14991697
cpp p292.cpp
#include "P267e.cpp"
template
class AOVGraph :public Graph
{
private:
int *count; //入度数组, 记录各顶点的入度
public:
AOVGraph ( co
www.eeworm.com/read/208239/15250380
cs 孙亮 0206159.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace 禁忌搜索算法
{
public class Program
{
public const int ArrayLength = 5; //定义常量,指定数组的长度
pu
www.eeworm.com/read/4799/40969
cpp 4-8.cpp
//随机函数和数组统计相关
//
//
/*
#pragma comment (lib,"highgui.lib")
#pragma comment (lib,"cxcore.lib")
#include
#include
#include
void main()
{
www.eeworm.com/read/14703/402919
h mydib.h
#pragma once
class MyDib : public CObject
{
/*成员变量*/
private:
//DIB文件
BITMAPINFO* DibInfo;
//像素数组
void* DibBits;
/*成员函数*/
public:
//构造函数
MyDib ( LPCTSTR dibName);//从文件中读入D
www.eeworm.com/read/25215/846154
c 6-4-4-2.c
#include //头文件
void main() //主函数
{
char str[3]; //定义字符型数组
str [0]='A'; //赋值
str [1]='B'; //赋值
printf("str=%s",str); //打印输出结果
}
www.eeworm.com/read/37274/1070946
c ch05_4.c
#include
#include
int main()
{
char Str_1[]={ 'W', 'o', 'r', 'l', 'd', '!'}; /* 定义字符数组 Str_1[] */
char Str_2[]="World!"; /* 定义字符
www.eeworm.com/read/37320/1072194
c++
#include
#include
//main()函数
void main( void )
{
//声明字符数组
char string[]="This is a test.";
int n;
//获得字符串的长度
cout
www.eeworm.com/read/37320/1072204
c++
#include
#define size 5
main()
{
//声明变量
int i,j;
float t,a[size];
//从键盘上为数组赋值
for (i=0;i