代码搜索:三维数组
找到约 10,000 项符合「三维数组」的源代码
代码结果 10,000
www.eeworm.com/read/135620/5883673
cpp p292.cpp
#include "P267e.cpp"
template
class AOVGraph :public Graph
{
private:
int *count; //入度数组, 记录各顶点的入度
public:
AOVGra
www.eeworm.com/read/130875/5949688
-
VERSION 5.00
Begin VB.Form frmText
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "使用文本框数组显示和编辑,适用于少量数据"
ClientHeight = 8505
ClientLeft
www.eeworm.com/read/130875/5949728
+-
Attribute VB_Name = "modCalculate"
'文本框数组录入数据
'计算平均值
Option Explicit
Public intRow As Integer '行数
Public intCol As Integer '列数
Public dblArray() As Double '录入数据
www.eeworm.com/read/186480/6334469
cpp p3-161.cpp
#include
#include
void main( void )
{
//拷贝字符串常量到字符数组
char string[80] = "Fill the string with something";
cout
www.eeworm.com/read/492943/6414591
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/490722/6451893
m ex615.m
%********************************************************
%程序:EX702.M
%功能:显示等级灰度图像函数应用实例
%********************************************************
I=imread('noon.tif'); %将图像格式文件读入为MATLAB图像对象数组数据
www.eeworm.com/read/484166/6591825
cpp p3-161.cpp
#include
#include
void main( void )
{
//拷贝字符串常量到字符数组
char string[80] = "Fill the string with something";
cout
www.eeworm.com/read/483317/6603646
java myset.java
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
public class MySet implements Cloneable
{
public MySet(){}
//用数组初始化集合
public MySet(int A[])
{
for(in