代码搜索结果
找到约 10,000 项符合
7 的代码
app7_7.java
// app7_7, 调用method并传递参数
class CCircle // 定义类CCircle
{
double pi=3.14; // 将数据成员赋值初值
app7_7.java
// app7_7, 调用method并传递参数
class CCircle // 定义类CCircle
{
double pi=3.14; // 将数据成员赋值初值
ex7_7.cpp
/* Code for exercise 7.7.
|
| "C++ Solutions--Companion to The C++ Programming Language, Third Edition"
| by David Vandevoorde; Addison-Wesley 1998; ISBN 0-201-30965-3.
|
| Permission to us
algo7-7.cpp
// algo7-7.cpp 实现算法7.16的程序
#define MAX_NAME 5 // 顶点字符串的最大长度+1
#define MAX_INFO 20 // 相关信息字符串的最大长度+1
typedef int VRType;
typedef char VertexType[MAX_NAME];
typedef char InfoType;
#include"