摘要: 今天看了数组的实践内容的二维数组的介绍 阅读全文
posted @ 2023-07-07 17:14 徐星凯 阅读(118) 评论(0) 推荐(0)
摘要: 考完科目一了还没开始练车比较闲,今天基本上都在看大道至简的刷视频 网课看了数组定义声明和介绍,看了数组内存占据的讲解,没有打代码 阅读全文
posted @ 2023-07-06 18:44 徐星凯 阅读(54) 评论(0) 推荐(0)
摘要: #include <iostream> #include <iomanip> using namespace std; int main() { int a; cout << "请输入a:"; cin >> a; cout << "十进制:" << dec << a << endl; cout << 阅读全文
posted @ 2023-05-05 22:27 徐星凯 阅读(24) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-05-04 22:50 徐星凯 阅读(27) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-04-28 21:14 徐星凯 阅读(5) 评论(0) 推荐(0)
摘要: 2 #include <iostream> 3 #include <string> 4 using namespace std; 5 class Shape 6 { 7 virtual void setvalues() = 0; 8 virtual void floatarea() = 0; 9 } 阅读全文
posted @ 2023-04-27 22:02 徐星凯 阅读(36) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-04-26 21:43 徐星凯 阅读(10) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-04-25 19:10 徐星凯 阅读(16) 评论(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 徐星凯 阅读(31) 评论(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 徐星凯 阅读(18) 评论(0) 推荐(0)