大萝卜BoBoBoBo~

导航

2020年5月4日 #

Problem E: 平面上的点——Point类 (V)

摘要: Problem E: 平面上的点——Point类 (V) Time Limit: 1 Sec Memory Limit: 4 MBSubmit: 10273 Solved: 3987[Submit][Status] Description 在数学上,平面直角坐标系上的点用X轴和Y轴上的两个坐标值唯一 阅读全文

posted @ 2020-05-04 09:09 我有一个大萝北 阅读(330) 评论(0) 推荐(0) 编辑

Problem D: 平面上的点——Point类 (IV)

摘要: Problem D: 平面上的点——Point类 (IV) Time Limit: 1 Sec Memory Limit: 4 MBSubmit: 8959 Solved: 5253[Submit][Status] Description 在数学上,平面直角坐标系上的点用X轴和Y轴上的两个坐标值唯一 阅读全文

posted @ 2020-05-04 09:06 我有一个大萝北 阅读(247) 评论(0) 推荐(0) 编辑

Problem C: 平面上的点——Point类 (III)

摘要: Problem C: 平面上的点——Point类 (III) Time Limit: 1 Sec Memory Limit: 4 MBSubmit: 7954 Solved: 5141[Submit][Status] Description 在数学上,平面直角坐标系上的点用X轴和Y轴上的两个坐标值唯 阅读全文

posted @ 2020-05-04 08:49 我有一个大萝北 阅读(240) 评论(0) 推荐(0) 编辑

Problem B: 平面上的点——Point类 (II)

摘要: Problem B: 平面上的点——Point类 (II) Time Limit: 1 Sec Memory Limit: 4 MBSubmit: 12244 Solved: 6148[Submit][Status] Description 在数学上,平面直角坐标系上的点用X轴和Y轴上的两个坐标值唯 阅读全文

posted @ 2020-05-04 08:44 我有一个大萝北 阅读(199) 评论(0) 推荐(0) 编辑

Problem A: 平面上的点——Point类 (I)

摘要: Description 在数学上,平面直角坐标系上的点用X轴和Y轴上的两个坐标值唯一确定。现在我们封装一个“Point类”来实现平面上的点的操作。 根据“append.cc”,完成Point类的构造方法和show()方法。 接口描述:Point::show()方法:按输出格式输出Point对象。 I 阅读全文

posted @ 2020-05-04 08:34 我有一个大萝北 阅读(180) 评论(0) 推荐(0) 编辑

2020年4月20日 #

Problem C: 类的初体验

摘要: #include <iostream> using namespace std; class Data { private: double x; public: void init(double xx){x = xx;} double getValue(){return x;} void showV 阅读全文

posted @ 2020-04-20 21:50 我有一个大萝北 阅读(190) 评论(0) 推荐(0) 编辑

Problem E: 类的初体验(III)

摘要: #include <iostream> using namespace std; class Data { public: double xx; public: Data(double x):xx(x){cout<<"Initialize a data "<<xx<<endl;} Data(){xx 阅读全文

posted @ 2020-04-20 21:47 我有一个大萝北 阅读(166) 评论(0) 推荐(0) 编辑

Problem A: 字符的变化

摘要: #include<iostream> using namespace std; class Character { public: char cc; public: Character(char c):cc(c){} //使用 列表的方法给函数赋值更为简洁 Character toUpper() { 阅读全文

posted @ 2020-04-20 21:29 我有一个大萝北 阅读(258) 评论(0) 推荐(0) 编辑

OJ复习2/Problem A: 平面上的点——Point类 (I)

摘要: #include<iostream> #include<iomanip> using namespace std; class Point { public: double x; double y; Point(){x=0,y=0;} Point(double a,double b){x=a; y= 阅读全文

posted @ 2020-04-20 21:13 我有一个大萝北 阅读(186) 评论(0) 推荐(0) 编辑

2020年4月16日 #

OJ复习2/Problem B: 平面上的点——Point类 (II)

摘要: #include <iostream> #include <iomanip> using namespace std; class Point { private : double x,y; public: Point(double xx = 0,double yy = 0) {x = xx;y = 阅读全文

posted @ 2020-04-16 09:37 我有一个大萝北 阅读(219) 评论(0) 推荐(0) 编辑