代码搜索:三维数组

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

代码结果 10,000
www.eeworm.com/read/122580/14682674

c 数组操作.c

#include void main() { char strg[40],*there,one,two; int *pt,list[100],index; strcpy(strg,"This is a character string."); one = strg[0]; /* one 和
www.eeworm.com/read/220676/14792413

doc gl数组.doc

www.eeworm.com/read/220676/14792425

doc sa数组.doc

www.eeworm.com/read/114690/15041847

txt 数组列表.txt

using System; using System.Collections; namespace ConsoleApplication1 { /// /// Class1 的摘要说明。 /// class Class2 { public int number; public Class2(int iN) {
www.eeworm.com/read/114690/15041995

txt 类数组.txt

//定义 protected class Item1 { public Item1(string text) { m_text=text; } public string Text { get{return m_text;} } private string m_text; } //调用
www.eeworm.com/read/208727/15238728

cpp 数组排序.cpp

#include #include #include int compare(const void *a,const void *b); char *list[5]={"cat","car","cab","zap","can"}; //这里用的是指针 //实际是list[5][4]={"cat","car","c
www.eeworm.com/read/208727/15238730

cpp 动态数组.cpp

#include #include const int MINIMUM_SIZE=10; class myArray { public: myArray(int nMaxSize=MINIMUM_SIZE,int nInitVal=0); myArray(myArray& anArray); ~myArray();
www.eeworm.com/read/208727/15238731

cpp 指针数组.cpp

#include int main() { extern void print_array(float *value, float *end_of_array); const int size=1000; float *data=new float[size]; float *end_ptr=data+size-1; for(in
www.eeworm.com/read/206509/15294097

txt 数组-上机.txt

1.有一数组a[]={0,1,2,3,4,5,6,7,8,9},用户输入一个数,输出是否在数组中 2.将字符串“china ok”用数组存储,并输出 3.将字符串“Japanese”反序输出 4.输入一个三行四列的矩阵,求出所有元素的平均数(整形、二维数组) 5.输入一个四行四列的矩阵,分别求出两条对角线的和(整形、二维数组)