- 博客(191)
- 资源 (20)
- 收藏
- 关注
原创 银行系统(类)
结构体没法改多文件,所以我把自己另一份调试好的银行系统放上来了,本来以为结构体能加分,结果,算了bank.hbank.h/************************************功能描述:头文件*输入参数:无*消息内容:无*输出参数:无************************************/#include#include#
2015-07-17 09:31:21 897 1
原创 银行储蓄系统
#include#include#include#include#include#include#include#define MAXNUM 10000 //银行中最大开户数using namespace std;//定义卡的结构体struct Account{ long cardId;//银行卡的卡号 char name[9];//开户人 char i
2015-07-14 15:15:32 719
原创 String类的构造
#include #include using namespace std;class String{public: String( ); //默认构造函数 String(const char *s); ~String(); void display( ); friend Stri
2015-04-29 08:46:24 941
原创 分数类中的运算符重载
#include #include #include using namespace std;int gcd(int m,int n);class CFraction{private: int nume; // 分子 int deno; // 分母public: CFraction(int nu=0,int de=1); //构
2015-04-29 08:44:18 437
原创 分数类中的运算符重载
#include #include #include using namespace std;int gcd(int m,int n);class CFraction{private: int nume; // 分子 int deno; // 分母public: CFraction(int nu=0,int de=1); //构
2015-04-29 08:40:21 465
转载 Time类中的运算符重载
#include 14.using namespace std; 15.class CTime 16.{ 17.private: 18. unsigned short int hour; // 时 19. unsigned short int minute; // 分 20. unsigned short int seco
2015-04-29 08:33:46 301
原创 实现复数类中的运算符重载(扩充类)
#includeusing namespace std;class Complex{public: Complex(){real=0;imag=0;} Complex(double r,double i){real=r; imag=i;} friend Complex operator+(const Complex &c1,const Complex
2015-04-29 08:19:40 273
原创 实现复数类中的运算符重载(友元函数)
#includeusing namespace std;class Complex{public: Complex(){real=0;imag=0;} Complex(double r,double i){real=r; imag=i;} friend Complex operator+(const Complex &c1,const Complex
2015-04-29 08:14:32 470
原创 实现复数类中的运算符重载
#includeusing namespace std;class Complex{public: Complex(){real=0;imag=0;} Complex(double r,double i){real=r; imag=i;} Complex operator+(const Complex &c2); Complex operat
2015-04-29 08:10:08 467
原创 复数模板类-友元函数
#include #include using namespace std;template class Complex{private: numtype real; numtype imag;public: Complex() { real=imag=0; } Complex(num
2015-04-15 08:39:04 411
原创 复数模板类
#include #include using namespace std;template class Complex{private: numtype real; numtype imag;public: Complex() { real=imag=0; } Complex(num
2015-04-15 08:37:06 315
原创 一般函数-求点类中距离-区别成员函数、友元函数和一般函数
#include #include using namespace std;class CPoint{private: double x; // 横坐标 double y; // 纵坐标public: void input(); //以x,y 形式输入坐标点 void output(); //以(x,y) 形式输出坐标点
2015-04-15 08:33:58 313
原创 友元函数-求点类中距离-区别成员函数、友元函数和一般函数
#include #include using namespace std;class CPoint{private: double x; // 横坐标 double y; // 纵坐标public: CPoint(double xx=0,double yy=0):x(xx),y(yy) {} friend double Dist
2015-04-15 08:31:50 325
原创 成员函数-求点类中距离-区别成员函数、友元函数和一般函数
#include #include using namespace std;class CPoint{private: double x; // 横坐标 double y; // 纵坐标public: CPoint(double xx=0,double yy=0):x(xx),y(yy) {} double Distance1(C
2015-04-15 08:29:05 403
原创 人数不定的工资类-动态分配空间
#includeusing namespace std;class Salary{public: Salary(int n); //n为职工人数,初始化时完成空间的分配 ~Salary(); //析构函数中释放初始化时分配的空间 void input_salary(); void show_salary();private:
2015-04-15 08:25:23 292
原创 我的数组类-深复制的构造函数
#includeusing namespace std;class MyArray{private: int *arrayAddr; //保存一个有len个整型元素的数组的首地址 int len; //记录动态数组的长度 int max; //动态数组中的最大值(并非动态数组中必须要的数据成员)public: My
2015-04-15 08:18:07 542
原创 深复制-复制构造函数
#include#includeusing namespace std;class A{private: char *a;public: A(char *aa) { a = new char[strlen(aa)+1]; strcpy(a, aa); } ~A() {
2015-04-15 08:15:23 357
原创 深复制体会
#include#includeusing namespace std;class A{private: char *a;public: A(char *aa) { a = new char[strlen(aa)+1]; //根据aa的长度为a分配空间,“+1”是因为字符串最后以“\0”作为结束
2015-04-15 08:13:54 245
原创 深复制体验
#include#includeusing namespace std;class A{private: char *a;public: A(char *aa) { a = new char[strlen(aa)+1]; ///(a)这样处理的意义在于:__深复制,要求在构造函数中为指针分配指向的内存空间__
2015-04-15 08:10:27 289
原创 静态成员应用
#include #include using namespace std;class Time{public: Time(int=0,int=0,int=0); void show_time( ); //根据is_24和from0,输出适合形式-20:23:5/8:23:5 pm/08:23:05 pm void add_seconds(int)
2015-04-08 08:35:08 299
原创 用多文件组织多个类的程序-三角形类
#include #include using namespace std;class CPoint{private: double x; // 横坐标 double y; // 纵坐标public: CPoint(double xx=0,double yy=0); double Distance1(CPoint p) const
2015-04-08 08:28:44 288
原创 对象作为数据成员-三角形类
#include #include using namespace std;class CPoint{private: double x; // 横坐标 double y; // 纵坐标public: CPoint(double xx=0,double yy=0); double Distance1(CPoint p) const
2015-04-08 08:24:45 337
原创 体验常成员函数-平面坐标点类
#include #include using namespace std;class CPoint{private: double x; // 横坐标 double y; // 纵坐标public: CPoint(double xx=0,double yy=0); double Distance1(CPoint p) const
2015-04-08 08:20:27 436
原创 阅读程序
#include using namespace std;class base{private: int m;public: base() {}; base(int m){this->m=m;} int get(){return m;} void set(int m){this->m=m;}};//base_endi
2015-04-08 08:17:28 287
原创 指向学生类的指针
#include using namespace std;class Student{public: Student(int n,double s):num(n),score(s){} int get_num(); double get_score(); void show();private: int num; //学
2015-04-01 08:48:00 341
原创 用对象数组操作长方柱类
#include using namespace std;class Bulk{public: Bulk(double l=1.0,double w=1.0,double h=1.0):length(l),width(w),height(h) {} double area(); double volume(); void get_value(
2015-04-01 08:46:26 331
原创 分数类的雏形
#include using namespace std;class CFraction{private: int nume; // 分子 int deno; // 分母public: CFraction(int nu=0,int de=1); //构造函数,初始化用 void set(int nu=0,int de=1);
2015-04-01 08:41:38 291
原创 三角形类的构造函数-使用参数初始化表对数据成员初始化
#include #include using namespace std;class Triangle{public: double perimeter();//计算三角形的周长 double area();//计算并返回三角形的面积 void showMessage(); Triangle(double a=1,double b=1,
2015-04-01 08:39:20 353
原创 三角形类的构造函数-有默认参数的构造函数
#include 14.#include 15.using namespace std; 16.class Triangle 17.{ 18.public: 19. double perimeter();//计算三角形的周长 20. double area();//计算并返回三角形的面积 21. void showMes
2015-04-01 08:37:12 364
原创 三角形类的构造函数-默认构造函数
#include #include using namespace std;class Triangle{public: double perimeter();//计算三角形的周长 double area();//计算并返回三角形的面积 void showMessage(); Triangle() { a=b=
2015-04-01 08:35:14 349
原创 三角形类的构造函数-使用带参数构造函数
#include #include using namespace std;class Triangle{public: double perimeter();//计算三角形的周长 double area();//计算并返回三角形的面积 void showMessage(); Triangle(double,double,double);
2015-04-01 08:30:03 526
原创 数组作数据成员-工资类(动态数组)
#include //操作文件必写#include#includeusing namespace std;class Salary{private: int number; double *salarys; //多人的工资public: void set_salarys();//输入职工工资(输入-1标志着工资输入结束),工资保存
2015-03-25 08:44:12 450
原创 数组作数据成员-工资类(手动输入)
#include //操作文件必写#include#includeusing namespace std;class Salary{private: double salarys[50]; //多人的工资 int number;public: void set_salarys();//输入职工工资(输入-1标志着工资输入结束),工资保
2015-03-25 08:30:14 404
原创 程序的多文件组织-考了语文数学的学生
#includeusing namespace std;class Stu{private: string name; //学生姓名 float chinese; //语文成绩 float math; //数学成绩public: void setStudent(string,float,float); voi
2015-03-25 08:24:38 269
原创 程序的多文件组织-三角形类
#include#includeusing namespace std;class Triangle{public: void setA(double x)//置A边的值 { a=x; } void setB(double y)//置B边的值 { b=y; } void s
2015-03-25 08:17:00 290
原创 三角形类2
#include#includeusing namespace std;class Triangle{public: void setA(double x)//置A边的值 { a=x; } void setB(double y)//置B边的值 { b=y; } void s
2015-03-25 08:04:48 208
原创 三角形类1
#include#includeusing namespace std;class Triangle{public: void setABC(double x, double y, double z);//置三边的值,注意要能成三角形 void getABC(double *x, double *y, double *z);//取三边的值 doub
2015-03-25 07:59:42 231
原创 图书馆管理系统
#include using namespace std;class Book{private: string name;//图书名 string writer;//图书作者 string public_name;//图书出版社 double price;//图书价钱 int number;//图书数量 int no;//
2015-03-18 08:15:59 934
原创 时间类
#include using namespace std;class Time{public: void set_time( ); void show_time( );private: bool is_time(int, int, int); //这个成员函数设置为私有的,是合适的,请品味 int hour; int
2015-03-18 08:10:36 271
原创 长方柱类
#include #include using namespace std;class Volume{public: void setdata(double length,double width,double height); double area(); double volume();private: double le
2015-03-18 08:05:50 360
合取范式转析取范式python.zip
2019-06-11
主合取范式转主析取范式.ipynb
2019-06-11
snip将图片公式转为LaTeX方便写论文
2019-04-22
Tensorflow 实战Google深度学习框架(完整版pdf)
2019-03-12
利用Python进行数据分析
2019-03-08
Python数据分析基础教程:NumPy学习指南(第2版)
2019-03-08
Algorithmic Game Theory(算法博弈论)
2019-01-23
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人