代码搜索:array

找到约 10,000 项符合「array」的源代码

代码结果 10,000
www.eeworm.com/read/256102/12028211

cpp fig08_16.cpp

// Fig. 8.16: fig08_16.cpp // Sizeof operator when used on an array name // returns the number of bytes in the array. #include using std::cout; using std::endl; size_t getSize( doub
www.eeworm.com/read/256102/12028318

cpp fig07_08.cpp

// Fig. 7.8: fig07_08.cpp // Compute the sum of the elements of the array. #include using std::cout; using std::endl; int main() { const int arraySize = 10; // constant variable
www.eeworm.com/read/256102/12028349

cpp fig07_04.cpp

// Fig. 7.4: fig07_04.cpp // Initializing an array in a declaration. #include using std::cout; using std::endl; #include using std::setw; int main() { // use initi
www.eeworm.com/read/256102/12028354

cpp fig07_03.cpp

// Fig. 7.3: fig07_03.cpp // Initializing an array. #include using std::cout; using std::endl; #include using std::setw; int main() { int n[ 10 ]; // n is an array
www.eeworm.com/read/255160/12098946

html 016-021.html

www.eeworm.com/read/152557/12105867

html labels-as-values.html

Using the GNU Compiler Collection (GCC)
www.eeworm.com/read/152557/12105919

html zero-length.html

Using the GNU Compiler Collection (GCC)
www.eeworm.com/read/339554/12225365

pas ac1114.pas

program tju1114; const maxsize=10; maxp=30000; dx:array[1..4]of shortint=(0,0,1,-1); dy:array[1..4]of shortint=(1,-1,0,0); var map:array[0..maxsize+1,0..maxsize+1]of char; dist:arr
www.eeworm.com/read/339554/12225389

pas ac1155.pas

program tju1155; const maxsize=15; bit:array[0..10]of word=(0,1,2,4,8,16,32,64,128,256,512); maxstatus=1023; dx:array[1..4]of shortint=(-1,1,0,0); dy:array[1..4]of shortint=(0,0,-1,1);
www.eeworm.com/read/339554/12225679

pas ac1098.pas

program tju1098; const maxn=100; maxm=1000; var v1,v2:array[1..maxm]of byte; len:array[1..maxm]of cardinal; dist:array[0..maxn]of cardinal; v:array[1..maxn]of boolean; n,m,i,j,t