上一页 1 ··· 20 21 22 23 24
摘要: //#include<iostream>//using namespace std;//int main()//{// int N;// cin >> N;// for (int i = 0; i < N; i++)// {// getchar();//注意吸收换行符// char a[100];/ 阅读全文
posted @ 2023-04-19 20:50 赵千万 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 虚函数,纯虚函数不能直接定义对象,可以定义指针,但他的派生可以定义对象; 注意最后一道题,纯虚数,派生的类仍为纯虚数,因为派生中没有将基类的全部纯虚数重新定义; a=d; *a=&d; &a=d; #include<iostream>using namespace std;class people{ 阅读全文
posted @ 2023-04-18 22:01 赵千万 阅读(15) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int main(){ int N; cin >> N; int* a = new int[N]; for (int i = 0; i < N; i++) { cin >> a[i]; } for (int i = 0; i 阅读全文
posted @ 2023-04-17 22:05 赵千万 阅读(21) 评论(0) 推荐(0) 编辑
摘要: //#include<iostream>//using namespace std;//int main()//{// long long int A, B, C; int D;// cin >> A >> B >> D;// C = A + B;// int n = 0;// long long 阅读全文
posted @ 2023-04-16 20:32 赵千万 阅读(15) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>//剪刀石头布using namespace std;int main(){ int N; cin >> N; char** a = new char* [N]; for (int i = 0; i < N; i++) { a[i] = new char[2]; 阅读全文
posted @ 2023-04-15 23:41 赵千万 阅读(71) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>冒泡排序using namespace std; #define N 10int main(){ int arr[N] = { 1,4,6,3,0,2,5,9,8,7 }; Bubble_Sort(arr, 10); for (int i = 0; i < N; 阅读全文
posted @ 2023-04-14 21:47 赵千万 阅读(11) 评论(0) 推荐(0) 编辑
摘要: //#include<iostream>//using namespace std;//int fun(int n)//{// if (n <= 4)// {// return n;// }// else// {// return fun(n - 1) + fun(n - 3);// }//}//i 阅读全文
posted @ 2023-04-13 20:47 赵千万 阅读(14) 评论(0) 推荐(0) 编辑
摘要: //#include<iostream>//#include<cmath>//using namespace std;//class fenshu//{//private:// int x, y;//public:// fenshu(int x=1 , int y=1 )// {// this->x 阅读全文
posted @ 2023-04-12 20:33 赵千万 阅读(17) 评论(0) 推荐(0) 编辑
摘要: //#include<iostream>//using namespace std;//class veter3D//{//private:// float x, y, z;//public:// veter3D(float x = 0, float y = 0, float z = 0)// {/ 阅读全文
posted @ 2023-04-11 21:06 赵千万 阅读(19) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cmath> #include"Rectangle.h" using namespace std; int main() { Rectangle rect; rect.intiRectangle(2, 3, 20, 10); rect.move 阅读全文
posted @ 2023-04-10 20:34 赵千万 阅读(17) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24