代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/223072/14661645
cpp ch8_4.cpp
//*********************
//** ch8_4.cpp **
//*********************
#include
void main()
{
int iArray[10];
int sum=0;
int* iPtr=iArray; //用数组名iArray给指针初始化
fo
www.eeworm.com/read/221868/14716686
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/121506/14755163
c calendars.c
#include "calendars.h"
/********************************* 数据***********************************/
/*
** 下面为阴历计算所需的数据,
** 为节省存储空间, 所以采用下面比较变态的存储方法.
*/
/*
** 数组gLunarDay存入阴历1901
www.eeworm.com/read/121167/14768197
cpp p292.cpp
#include "P267e.cpp"
template
class AOVGraph :public Graph
{
private:
int *count; //入度数组, 记录各顶点的入度
public:
AOVGra
www.eeworm.com/read/220921/14783525
cpp p3-161.cpp
#include
#include
void main( void )
{
//拷贝字符串常量到字符数组
char string[80] = "Fill the string with something";
cout
www.eeworm.com/read/220892/14785127
java spamatrix.java
public class SpaMatrix{
int rows; //行数
int cols; //列数
int dNum; //非零元个数
MyVector v; //数组
SpaMatrix(int max){ //构造函数
rows = cols = dNum = 0;
v = ne
www.eeworm.com/read/218418/14921060
cpp p3-161.cpp
#include
#include
void main( void )
{
//拷贝字符串常量到字符数组
char string[80] = "Fill the string with something";
cout
www.eeworm.com/read/214111/15112991
cpp statistfire.cpp
#include
/**
* 概率
* @author xiemin
*/
class Statist
{
private:
//角度的间隔
static const double GAP;
//概率分布数组的大小
enum { FACTOR_SIZE = 30 };
//概率分
www.eeworm.com/read/208721/15238770
bas imagefunc.bas
Attribute VB_Name = "ImageFunc"
Const ChunkSize As Long = 100
Const BlockSize As Long = 100
Const TempFile As String = "tempfile.tmp"
Dim byteData() As Byte '定义数据块数组
Dim DiskFile As String '图像文
www.eeworm.com/read/208709/15238963
bas imagefunc.bas
Attribute VB_Name = "ImageFunc"
Const ChunkSize As Long = 100
Const BlockSize As Long = 100
Const TempFile As String = "tempfile.tmp"
Dim ByteData() As Byte '定义数据块数组
Dim DiskFile As String '图像文