代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/382268/2638617
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/371561/2779577
java stringarrays.java
//演示字符串数组。
class StringArrays {
public static void main(String args[]) {
String str[] = { "Here,", "a", "test", "string." };
System.out.println("原始的字符串: ");
for(int i=0; i
www.eeworm.com/read/359371/2978053
cpp main.cpp
#include
#include
int main(void){
using namespace std;
char* cArray="hello, world!";
string s(cArray);
//数组方式
for(unsigned int j=0; j< s.size(); j++)
cout
www.eeworm.com/read/357946/3010024
java map.java
package com.j2medev.chapter5;
public class Map implements MyGameInterface {
//定义地图数组
public static byte[][] backMap;
//定义地图的宽和高
public static int mapWidth = 0, mapHeight = 0;
/
www.eeworm.com/read/357946/3010041
java map.java
package com.j2medev.chapter5;
public class Map implements MyGameInterface {
//定义地图数组
public static byte[][] backMap;
//定义地图的宽和高
public static int mapWidth = 0, mapHeight = 0;
/
www.eeworm.com/read/156960/5608164
cpp p3-165.cpp
#include
#include
//main()函数
void main( void )
{
//声明字符数组
char string[]="This is a test.";
int n;
//获得字符串的长度
cout
www.eeworm.com/read/156960/5608308
cpp p1-41.cpp
#include
#define size 5
main()
{
//声明变量
int i,j;
float t,a[size];
//从键盘上为数组赋值
for (i=0;i
www.eeworm.com/read/475959/6771567
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/473097/6856358
java stringarrays.java
//演示字符串数组。
class StringArrays {
public static void main(String args[]) {
String str[] = { "Here,", "a", "test", "string." };
System.out.println("原始的字符串: ");
for(int i=0; i
www.eeworm.com/read/295512/8156475
cpp p3-165.cpp
#include
#include
//main()函数
void main( void )
{
//声明字符数组
char string[]="This is a test.";
int n;
//获得字符串的长度
cout