伊莉丝

导航

2019年6月18日 #

实验6

摘要: // 合并两个文件内容到一个新文件中。 // 文件名均从键盘输入 #include <iostream> #include <fstream> #include <string> #include <cstdlib> using namespace std; int main() { char fi 阅读全文

posted @ 2019-06-18 11:01 伊莉丝 阅读(106) 评论(0) 推荐(0)

2019年6月3日 #

实验5

摘要: #include <iostream> #include <string> using namespace std; class MachinePets { public: MachinePets(const string s) :nickname(s) {} ; string getNicknam 阅读全文

posted @ 2019-06-03 23:30 伊莉丝 阅读(116) 评论(2) 推荐(0)

2019年5月21日 #

实验4

摘要: #include <iostream> using namespace std; #include "car.h" #include "electricCar.h" int main() { // 测试Car类 Car oldcar("Audi","a4",2016); cout << " oldc 阅读全文

posted @ 2019-05-21 13:05 伊莉丝 阅读(111) 评论(0) 推荐(0)

2019年4月22日 #

实验3

摘要: #ifndef GRAPH_H #define GRAPH_H // 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char symbol; int 阅读全文

posted @ 2019-04-22 23:58 伊莉丝 阅读(141) 评论(1) 推荐(0)

2019年4月1日 #

课堂测试

摘要: 课堂小结:在第一个complexcomplex那里,因为少写了两个1,所以卡了很久,不过在同学的帮助下明白了原因。 https://www.cnblogs.com/0122Frank/p/10587023.html#4219744 https://www.cnblogs.com/sqcmxg/p/1 阅读全文

posted @ 2019-04-01 17:37 伊莉丝 阅读(125) 评论(3) 推荐(0)

2019年3月25日 #

C++实验2

摘要: https://www.cnblogs.com/csc13813017371/p/10541783.html https://www.cnblogs.com/joey-yan/p/10543990.html https://www.cnblogs.com/agsjg/p/10544489.html# 阅读全文

posted @ 2019-03-25 21:16 伊莉丝 阅读(164) 评论(1) 推荐(0)

2019年3月18日 #

C++作业

摘要: 实验小结 巩固了以前的知识,并学会使用C++来完成一些简单的程序,了解了do while,while,for的使用 阅读全文

posted @ 2019-03-18 22:46 伊莉丝 阅读(148) 评论(2) 推荐(0)