01 2024 档案
摘要:#include <iostream> #include <queue> using namespace std; int main(){ queue<int> a; queue<int> b; int m,w,c,e; cin>>m>>w>>c; for(int i=1;i<m;i++){ a.p
阅读全文
摘要:#include <iostream> #include <set> using namespace std; int main(){ int m,n,x=0,c[1000],p=-1; set<int> a; cin>>m>>n; int b; set<int>::iterator i; for(
阅读全文
摘要:#include <iostream> using namespace std; int main(){ int m=10; cout<<"请输入"<<m<<"个数字进行排序:"<<endl; int max=100000; int list[max]={0}; int x; for(int i=0
阅读全文
摘要:#include <iostream> #include <windows.h> #include <fstream> using namespace std; struct card{ //属性 string name; int id; string classroom; float money=
阅读全文
摘要://#include <iostream> //#include <list> //using namespace std; //int main(){ // list<int> a={1,2,3,4,5}; // list<int> b={6,7,8,9,10}; // a.splice(b.be
阅读全文