代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/136148/13871438
c 螺旋数组1.c
#include"stdio.h"
#include"iostream.h"
int array[11][11];
int temp;
int ROW;
void godown(int &m,int &a)
{
for(temp=1;temp
www.eeworm.com/read/136148/13871454
c 螺旋数组2.c
#include
#include
#include
#include
#define h 5 // height
#define w 5 // width
void main ()
{
int a[h][w];
int d=0, direct[4]
www.eeworm.com/read/238470/13884634
pro 例2.28 数组检查.pro
www.eeworm.com/read/151133/5685991
c 螺旋数组1.c
#include"stdio.h"
#include"iostream.h"
int array[11][11];
int temp;
int ROW;
void godown(int &m,int &a)
{
for(temp=1;temp
www.eeworm.com/read/151133/5685996
c 螺旋数组2.c
#include
#include
#include
#include
#define h 5 // height
#define w 5 // width
void main ()
{
int a[h][w];
int d=0, direct[4]
www.eeworm.com/read/289294/6314948
ppt 第7章 数组.ppt
www.eeworm.com/read/491959/6429005
ppt 第8章 数组.ppt
www.eeworm.com/read/489519/6472439
ppt 第6讲_数组.ppt
www.eeworm.com/read/489307/6478431
cpp 数组初始化.cpp
#include //输入输出函数库
#include//字符串函数库
//定义常量
#define N 10
void main()
{
int i,j,num[15]={1,1};
int a[4][4]={{0,8},{1},{2},{3}};
for(i=0;i
www.eeworm.com/read/489307/6478432
cpp 二维数组.cpp
#include //输入输出函数库
#include//字符串函数库
void main()
{
int num[4][4];
int i,j;//i控制行j控制列
//实现数组的赋值
for(i=0;i