代码搜索结果

找到约 10,000 项符合 9 的代码

algo9-9.c

/* algo9-9.c 检验bo9-7.c的程序 */ #include"c1.h" #define NULLKEY 0 /* 0为无记录标志 */ #define N 10 /* 数据元素个数 */ typedef int KeyType; /* 设关键字域为整型 */ typedef struct { KeyType key; int ord;

algo9-9.c

/* algo9-9.c 检验bo9-7.c的程序 */ #include"c1.h" #define NULLKEY 0 /* 0为无记录标志 */ #define N 10 /* 数据元素个数 */ typedef int KeyType; /* 设关键字域为整型 */ typedef struct { KeyType key; int ord;

ch9_9.cpp

//********************* //** ch9_9.cpp ** //********************* #include double* fn(const double* pd) { static double ad=32; ad+=*pd; cout

prg9_9.cpp

#include #pragma hdrstop #include "cnode.h" #include "random.h" // create circular linked list with given header node void CreateList(CNode *header, int n) { // begin

9x9.c

/*乘法口诀表 v1*/ # include main () { int a=1; /*a乘数,控制行数*/ int b=1; /*b被乘数,控制列数*/ int c; /*c乘积*/ while(a

example9_9.java

import java.util.*; public class Example9_9 { public static void main(String args[]) { A a=new A(); a.student.start(); a.teacher.start(); } } class A implements Runnable {

app9_9.java

// app9_9, 用this来调用实例变量 class Caaa{ int num=10; // 这是实例变量 public void show(){ int num=5; // 这是局部变量 System.out.println("this.num="+this.num); // 输出实例变量 System.ou

xt9-9.cpp

#include using namespace std; class Product {public: Product(int n,int q,float p):num(n),quantity(q),price(p){}; void total(); static float average(); static void displa