代码搜索:array
找到约 10,000 项符合「array」的源代码
代码结果 10,000
www.eeworm.com/read/218418/14921238
cpp p4-200.cpp
#include
#include
#include
#include
#define ARRAY_SIZE 15
using namespace std;
//显示数组
void put_array(int x[],int size) {
for(int i=0;i
www.eeworm.com/read/214824/15086951
h xt8-5.h
//xt8-5.h(arraymax.h)
class Array_max
{public:
void set_value();
void max_value();
void show_value();
private:
int array[10];
int max;
};
www.eeworm.com/read/213372/15136382
h xt8-5.h
//xt8-5.h(arraymax.h)
class Array_max
{public:
void set_value();
void max_value();
void show_value();
private:
int array[10];
int max;
};
www.eeworm.com/read/167133/5469265
h object.h
/*
* object.h
* Object representation.
*
* Copyright (c) 1996, 1997
* Transvirtual Technologies, Inc. All rights reserved.
*
* See the file "license.terms" for information on usage and redistr
www.eeworm.com/read/164862/5487871
java~108~ main.java~108~
package demo;
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
import java.io.DataInputStream;
import java.io.InputStream;
/**
*
* Title: MobileTank
*
www.eeworm.com/read/162614/5524193
a cxb3002.a
-- CXB3002.A
--
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025,
www.eeworm.com/read/162614/5526102
f90 char_pointer_comp_assign.f90
! { dg-do run }
! This test the fix of PR18283, where assignments of scalar,
! character pointer components of derived types caused an ICE.
! It also checks that the array counterparts remain operatio
www.eeworm.com/read/156960/5608188
cpp p4-196.cpp
#include
#include
#include
#define ARRAY_SIZE 10
using namespace std;
//利用类模板生成实例
typedef vector < int > IntArray;
//显示数组
void put_array(int x[],int size) {
www.eeworm.com/read/156960/5608210
cpp p4-199.cpp
#include
#include
#include
#include
#define ARRAY_SIZE 15
using namespace std;
//定义整型数的vector容器类
typedef vector IntVector ;
//显示数组
void pu