您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. C++大学教程输入输出流代码

  2. C++大学教程(第二版)第17章输入输出流代码。
  3. 所属分类:C++

    • 发布日期:2007-08-06
    • 文件大小:337920
    • 提供者:gengjia8512
  1. C++般的四阶龙格-库塔算法

  2. 是用c++编写的算法,简洁明了。 #include #include double function(double x,double y) { return y-2*x/y; } /*n表示几等分,n+1表示他输出的个数*/ int RungeKutta(double y0,double a,double b,int n,double *x,double *y) { double h=(b-a)/n,k1,k2,k3,k4; int i; x [0]=a; y[0]=y0; for(i=0;i
  3. 所属分类:其它

    • 发布日期:2009-05-12
    • 文件大小:749
    • 提供者:kaixinxiaobao
  1. 求学生成绩程序c++版

  2. #include #include"student.h" #include const size=2; void main() { int numberi; // char namei[20]; float score1,score2,score3; student aSA[size]; //执行缺省构造函数 for(int i=0;i<size;i++) { char *namei=new char[20]; //动态申请空间 cout<<"please input the
  3. 所属分类:iOS

    • 发布日期:2009-05-25
    • 文件大小:2048
    • 提供者:sidney_sin
  1. 打印一个 N*N 的方阵

  2. #include #include using namespace std; int main() { int n,i,k=0; cin>>n; for(i=n*n;i>=1;i--) { cout<<setw(5)<<i; k++; if(k%n==0) cout<<endl; } cout<<endl; return 0;
  3. 所属分类:iOS

    • 发布日期:2009-06-08
    • 文件大小:791
    • 提供者:wslcx1680
  1. #include <iostream>

  2. #include #include using namespace std; int main() { int n,i,k=0; cin>>n; for(i=n*n;i>=1;i--) { cout<<setw(5)<<i; k++; if(k%n==0) cout<<endl; } cout<<endl; return 0;
  3. 所属分类:iOS

    • 发布日期:2009-06-08
    • 文件大小:514
    • 提供者:wslcx1680
  1. C++课程设计图书管理系统

  2. C++图书管理系统! #include #include #include #include const int Maxr=200; const int Maxb=200; const int Maxbor=2; //每个读者最多借借2本 class Reader //读者类 { int tag; //删除标记 1:已删,0:未删 int no; //读者编号 char name[10]; //读者姓名 int borbook[Maxbor]; //所借图书 public: Reade
  3. 所属分类:C++

    • 发布日期:2009-06-13
    • 文件大小:8192
    • 提供者:jinxukangyi
  1. 学生信息管理资源系统

  2. #include #include #include void student(char xh[][20],char xm[][20],char xb[][20],float yw[20],float sx[20],float yy[20],char cs[][20],char nl[][20]); void benkesheng(char xh[][20],char xm[][20],char xb[] [20],float yw[20],float sx[20],float yy[20
  3. 所属分类:iOS

    • 发布日期:2009-06-14
    • 文件大小:278528
    • 提供者:hanglili
  1. 万年历日历(C++程序小例)

  2. #include #include #include using namespace std; void setcolor(unsigned short color) { HANDLE hCon = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleTextAttribute(hCon,color); } int runnian(int x) { if(x%4==0) {if (x%100==0) {if(x%400==0) x=2; else x=1;}
  3. 所属分类:iOS

    • 发布日期:2009-06-27
    • 文件大小:3072
    • 提供者:y295902794
  1. C++程序设计图书信息管理系统设计.doc

  2. 非常好啊 图书信息管理系统设计.doc #include #include #include //输入/输出文件流类 #include using namespace std; //最多的读者 const int Maxr=100; //最多的图书 const int Maxb=100; //每位读者最多借五本书 const int Maxbor=5 ; //读者类,实现对读者的信息的描述 class Reader { private: //删除标记 1:已删 0:未删 int tag
  3. 所属分类:iOS

    • 发布日期:2009-07-07
    • 文件大小:69632
    • 提供者:asdzyh030405
  1. c++成绩管理系统编程

  2. C++ 编程 管理系统 #include #include #include #include #include #include #include using namespace std; typedef struct
  3. 所属分类:C++

    • 发布日期:2009-09-29
    • 文件大小:8192
    • 提供者:gykun0808
  1. 关于iomanip头文件的使用课件

  2. 关于iomanip头文件的使用课件,更多的内容请在http://blog.csdn.net/akof1314/archive/2009/10/01/4625888.aspx
  3. 所属分类:专业指导

    • 发布日期:2009-10-01
    • 文件大小:778240
    • 提供者:akof1314
  1. 通讯录说明书(带源程序)

  2. 这是我自己做的说明书 还可以吧 #include #include #include #include #include using namespace std; class book { public: book();//默认构造函数 char inter_face();//首页 void add_person();//添加联系人 void del_person();//删除联系人 void show_all();//显示所有联系人 void alter();//修改信息
  3. 所属分类:iOS

    • 发布日期:2009-10-15
    • 文件大小:80896
    • 提供者:winter13292
  1. c++图书管理系统完整代码

  2. c++图书管理系统的完整代码 #include #include #include #include //输入/输出文件流类 using namespace std; const int Maxr=100;//最多的读者 const int Maxb=100;//最多的图书 const int Maxbor=5;//每位读者最多借五本书 //读者类,实现对读者的信息的描述
  3. 所属分类:C++

    • 发布日期:2009-10-24
    • 文件大小:9216
    • 提供者:guo215215
  1. clibsource C标准库源代码

  2. 介绍说明 C标准库源代码,能提高对C的理解,不错的哦 下载文件列表 Pack : clibsource.rar C标准库源代码\ABORT.C C标准库源代码\ABS.C C标准库源代码\ACCESS.C C标准库源代码\ADJUSTFD.C C标准库源代码\ALGRITHM C标准库源代码\ASCTIME.C C标准库源代码\ASSERT.C C标准库源代码\ASSERT.H C标准库源代码\ATOF.C C标准库源代码\ATONEXIT.C C标准库源代码\ATOX.C C标准库源代码\A
  3. 所属分类:C

    • 发布日期:2009-11-16
    • 文件大小:1048576
    • 提供者:edzjx
  1. 银行家算法的C语言实现

  2. 银行家算法的C语言实现 //head.h #include #include using namespace std; #define Max 20 int res_num; //资源类:代表资源数目之用 class R { public: R(); int a; int b; int c; }; R::R() { a=0; b=0; c=0; } //数组类,存储安全序列之用 class Array { public: Array(); int array[Max]; int deep;
  3. 所属分类:C

    • 发布日期:2009-11-24
    • 文件大小:6144
    • 提供者:srlin123
  1. 操作系统 页式地址变换机构模拟

  2. 页式地址变换机构模拟:1.根据给出的页表情况模拟页式的地址变换机构 2.用程序模拟地址变换机构,输出指令逻辑地址到物理地址的变换 #include #include #include #include const int MAXSIZE=100; //定义访问串最大长度 const int MAX_PAGE=100; //定义最大的分页数 int Queue[MAXSIZE]; //保存访问串 int QueueNum=0; //保存访问串长度 int PageNum=0;
  3. 所属分类:iOS

    • 发布日期:2009-12-07
    • 文件大小:1048576
    • 提供者:y732770755
  1. C语言技能百练 提高编写能力

  2. #include #include struct sport //结构声明(声明结构时不分配内存空间) { char num[4]; //数据成员1(结构中包含的数据变量称为数据成员) double grade; //数据成员2 }; //不能缺少分号 void main() { sport a[12]={{"001",13.6},{"002",14.8},{"010",12.0}, {"011",12.7},{"023",15.6},{"025",13.4}, {"031",14.9},
  3. 所属分类:C

    • 发布日期:2009-12-15
    • 文件大小:1048576
    • 提供者:lds139
  1. 操作系统实验索引结构文件模拟

  2. 索引结构文件包括一级索引,二级索引 #include #include #include #include #include #define BLOCKNUM 8000 //磁盘物理块个数 #define DIRECT_ADDR_NUM 10 //直接寻址地址个数 #define INDEXTABLE_NUM 100 //索引表的索引项个数
  3. 所属分类:iOS

    • 发布日期:2009-12-19
    • 文件大小:12288
    • 提供者:y732770755
  1. iomanip.h头文件使用说明

  2. 关于iomanip.h头文件(见名称就知道了...)
  3. 所属分类:其它

    • 发布日期:2008-09-16
    • 文件大小:33792
    • 提供者:wk21cn
  1. cpp.iomanip:字符串格式的Probando laliberíade c ++-源码

  2. cpp.iomanip:字符串格式的Probando laliberíade c ++
  3. 所属分类:其它

    • 发布日期:2021-02-09
    • 文件大小:17408
    • 提供者:weixin_42136791
« 12 3 4 5 6 7 8 »