代码搜索:三维数组

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

代码结果 10,000
www.eeworm.com/read/208614/15242262

f90 ex0716.f90

program ex0716 implicit none integer :: students integer, allocatable :: a(:) ! 声明一个可变大小的一维数组 integer :: i write(*,*) "How many students:" read(*,*) students allocate( a(stude
www.eeworm.com/read/37274/1070932

c ch06_10.c

#include #include int main() { int arr[4][3] = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12} };/*声明二维数组
www.eeworm.com/read/37274/1070934

c ch06_14.c

#include #include int main() { char *name[4] = { "Justinian", "Momo", "Becky", "Bush" };/* 一维指针数组 */ char name1[4][10] = { "Justinian", "Momo", "Becky", "Bush" };/*
www.eeworm.com/read/37320/1072188

c++

#include #include void main( void ) { //拷贝字符串常量到字符数组 char string[80] = "Fill the string with something"; cout
www.eeworm.com/read/492312/1176268

java pooledcon.java

package qianqian.pooledb; import java.sql.Connection; import qianqian.p2pchat.constant.Const; public class PooledCon { // 连接数组 private static final Connection[] pool = new Connection[Cons
www.eeworm.com/read/490190/1207895

cs program.cs

using System; using System.Collections.Generic; using System.Windows.Forms; namespace WinApp8_7数组方法 { static class Program { /// /// 应用程序的主入口点。 //
www.eeworm.com/read/478883/1348249

cpp p292.cpp

#include "P267e.cpp" template class AOVGraph :public Graph { private: int *count; //入度数组, 记录各顶点的入度 public: AOVGra
www.eeworm.com/read/472976/1402388

cpp p292.cpp

#include "P267e.cpp" template class AOVGraph :public Graph { private: int *count; //入度数组, 记录各顶点的入度 public: AOVGra
www.eeworm.com/read/464242/1532304

java bookaccount.java

/* * 基本的记录字段分割和转换字节数组 */ package PhoneBook; import java.io.*; public class BookAccount { private String userName = ""; private String mobilePhone = ""; private String email = ""; private St
www.eeworm.com/read/464242/1532319

java bookaccount.java

/* * 基本的记录字段分割和转换字节数组 */ package PhoneBook; import java.io.*; public class BookAccount { private String userName = ""; private String mobilePhone = ""; private String email = ""; private St