摘要: 阅读全文
posted @ 2023-04-25 19:10 徐星凯 阅读(9) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; class clock{ public: clock(int hour=0,int minture=0,int second=0); void showtime() const; clock & operator++() 阅读全文
posted @ 2023-04-24 22:02 徐星凯 阅读(15) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<string> using namespace std; class shape{ public: virtual void setvalues(float a,float b)=0; virtual float area()=0; }; cl 阅读全文
posted @ 2023-04-23 22:33 徐星凯 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-04-22 17:25 徐星凯 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 注意double类型相运算的也要是double类型 如上例若把a变量更改为int类型则会导致结果出错 #include<iostream> #include<string> using namespace std; class people{ protected: int age; string n 阅读全文
posted @ 2023-04-21 21:00 徐星凯 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 思路很重要 阅读全文
posted @ 2023-04-20 22:08 徐星凯 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; void speed(double a){ double v; v=(a-95859)/2; cout<<"汽车的车速为"<<v<<endl; } int main(){ int i,j; double s; int A 阅读全文
posted @ 2023-04-19 21:38 徐星凯 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 using namespace std; 3 int main(){ 4 int num=0; 5 int i,j,k; 6 for(i=0;i<4;i++){ 7 for(j=0;j<4;j++){ 8 k=8-i-j; 9 if(k<=6){ 10 阅读全文
posted @ 2023-04-18 21:09 徐星凯 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<math.h> 3 using namespace std; 4 void print(int s[]); 5 int judge(int c[]); 6 int j=0; 7 int main(){ 8 int sweet[10]={ 阅读全文
posted @ 2023-04-17 21:20 徐星凯 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-04-16 22:14 徐星凯 阅读(5) 评论(0) 推荐(0) 编辑