代码搜索:三维数组

找到约 10,000 项符合「三维数组」的源代码

代码结果 10,000
www.eeworm.com/read/156813/11761993

cpp p3-165.cpp

#include #include //main()函数 void main( void ) { //声明字符数组 char string[]="This is a test."; int n; //获得字符串的长度 cout
www.eeworm.com/read/156813/11762326

cpp p1-41.cpp

#include #define size 5 main() { //声明变量 int i,j; float t,a[size]; //从键盘上为数组赋值 for (i=0;i
www.eeworm.com/read/258816/11841043

cpp p3-165.cpp

#include #include //main()函数 void main( void ) { //声明字符数组 char string[]="This is a test."; int n; //获得字符串的长度 cout
www.eeworm.com/read/258816/11841368

cpp p1-41.cpp

#include #define size 5 main() { //声明变量 int i,j; float t,a[size]; //从键盘上为数组赋值 for (i=0;i
www.eeworm.com/read/154628/11942194

cpp ch8_5.cpp

//********************* //** ch8_5.cpp ** //********************* #include void main() { int iArray[10]; int* iPtr=iArray; //用数组名iArray给指针初始化 for(int i=0;i
www.eeworm.com/read/154039/11993979

js name_reserved.js

//建立屏蔽保留用户名的数组 var tempStrA=new Array(12); tempStrA[0]="yang"; tempStrA[1]="yongzi"; tempStrA[2]="diary"; tempStrA[3]="85now"; tempStrA[4]="yangtianyong"; temp
www.eeworm.com/read/152522/12108144

cpp p1-41.cpp

#include #define size 5 main() { //声明变量 int i,j; float t,a[size]; //从键盘上为数组赋值 for (i=0;i
www.eeworm.com/read/152290/12123958

m 5-2.m

a = 'hi, it is a good day!' size(a) %计算字符串的a长度 % 可以通过class和ischar这两个命令判断一个变量是否为字符数组,例如 class(a) ischar(a)
www.eeworm.com/read/339096/12259821

htm ex9-10.htm

数组的sort()和reverse()方法应用演示
www.eeworm.com/read/250487/12404168

h huffmantree.h

#ifndef HUFFMANTREE_H #define HUFFMANTREE_H typedef struct { char data; unsigned weight; unsigned parent, lchild, rchild; } HTNode, *HuffmanTree; /* 动态分配数组存储赫夫曼树 */ typedef char**