代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/482837/6614230
cpp p3-161.cpp
#include
#include
void main( void )
{
//拷贝字符串常量到字符数组
char string[80] = "Fill the string with something";
cout
www.eeworm.com/read/482610/6619810
cpp p292.cpp
#include "P267e.cpp"
template
class AOVGraph :public Graph
{
private:
int *count; //入度数组, 记录各顶点的入度
public:
AOVGra
www.eeworm.com/read/481944/6632858
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/479650/6689662
cpp p3-161.cpp
#include
#include
void main( void )
{
//拷贝字符串常量到字符数组
char string[80] = "Fill the string with something";
cout
www.eeworm.com/read/476406/6760773
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/409710/11315496
c fft_caculate.c
float FFT_caculate(void)
{
/*
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
DMA_ptr=(unsigned int *)DMA_ADDRESS;
for(i=0;i
www.eeworm.com/read/264397/11316442
cpp 背包问题扩展三.cpp
#define MAX 200
#include
#include
using namespace std;
struct Item{ //建立结构数组,包含两个数据:物品的重量以及其单位价值
double weight, value;
}item[
www.eeworm.com/read/409260/11338531
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/263831/11339289
bas 文本框_平均值m.bas
Attribute VB_Name = "modCalculate"
'文本框数组录入数据
'计算平均值
Option Explicit
Public intRow As Integer '行数
Public intCol As Integer '列数
Public dblArray() As Double '录入数据
www.eeworm.com/read/405795/11457510
bas memory.bas
Attribute VB_Name = "Memory"
Public mmu(1 To 512) As String * 1 '用数组模拟内存
Public Type mcbdef '定义一个表示内存的对象
flag As Boolean '标志位
Star