代码搜索:三维数组

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

代码结果 10,000
www.eeworm.com/read/484166/6591973

cpp p1-41.cpp

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

cpp p3-165.cpp

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

cpp p1-41.cpp

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

cpp p3-165.cpp

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

cpp p1-41.cpp

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

cpp 6_8.cpp

#include using namespace std; int main() { float Array[4] = { 10.0, 20.0, 30.0 }; //语句1:声明4维数组 cout
www.eeworm.com/read/402750/11528622

c sinwn.c

/* a 振幅 */ /* f 频率 */ /* ph 相位 */ /* m 正弦信号个数 */ /* fs 采样频率 */ /* snr 信噪比 */ /* seed 随机数种子 */ /* x 存放信号的数组 */ /* n 数据长度 */ #include "math.h" #includ
www.eeworm.com/read/401752/11551069

h map.h

#include "stdio.h" class map { public: int mapMax[12][20];//地图数组 void Initmap();//地图方法 void printmap(int map[12][20]);//地图绘制 void move(int a,int b);//移动方法 };
www.eeworm.com/read/400143/11582260

txt zuizhong.txt

#include using namespace std; int AVAILABLE[5]; /*可用资源数组*/ int MAX[10][5]; /*最大需求矩阵*/ int ALLOCATION[10][5]; /*分配矩阵*/ int NEED[10][5]; /*进程需求矩阵*/ i
www.eeworm.com/read/157639/11679937

jsp cookietest.jsp