摘要:
源程序: #include <iostream>using namespace std; class birth{private: int year,month,day;public: birth(int x,int y,int z) { year=x; month=y; day=z; } void 阅读全文
posted @ 2022-03-27 11:36
bobo哥
阅读(50)
评论(0)
推荐(0)
摘要:
源程序: #include <iostream>using namespace std; void sort(int L[],int n){ int j,k,flag,temp; flag=n-1; while(flag>0) { k=flag-1; flag=0; for(j=0;j<=k;j++ 阅读全文
posted @ 2022-03-27 11:18
bobo哥
阅读(73)
评论(0)
推荐(0)