摘要:
//#include<iostream>//using namespace std;//int main()//{// int N;// cin >> N;// for (int i = 0; i < N; i++)// {// getchar();//注意吸收换行符// char a[100];/ 阅读全文
摘要:
虚函数,纯虚函数不能直接定义对象,可以定义指针,但他的派生可以定义对象; 注意最后一道题,纯虚数,派生的类仍为纯虚数,因为派生中没有将基类的全部纯虚数重新定义; a=d; *a=&d; &a=d; #include<iostream>using namespace std;class people{ 阅读全文
摘要:
#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 阅读全文
摘要:
//#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 阅读全文
摘要:
#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]; 阅读全文
摘要:
#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; 阅读全文
摘要:
//#include<iostream>//using namespace std;//int fun(int n)//{// if (n <= 4)// {// return n;// }// else// {// return fun(n - 1) + fun(n - 3);// }//}//i 阅读全文
摘要:
//#include<iostream>//#include<cmath>//using namespace std;//class fenshu//{//private:// int x, y;//public:// fenshu(int x=1 , int y=1 )// {// this->x 阅读全文
摘要:
//#include<iostream>//using namespace std;//class veter3D//{//private:// float x, y, z;//public:// veter3D(float x = 0, float y = 0, float z = 0)// {/ 阅读全文
摘要:
#include<iostream> #include<cmath> #include"Rectangle.h" using namespace std; int main() { Rectangle rect; rect.intiRectangle(2, 3, 20, 10); rect.move 阅读全文