大萝卜BoBoBoBo~

导航

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) 编辑