11 2023 档案
摘要:#include <iostream> #include <windows.h> #include <fstream> using namespace std; struct card{ //属性 string name; int id; string classroom; float money=
阅读全文
摘要:#include <bits/stdc++.h> using namespace std; string kong(string a){ while(a.find(" ")>=0&&a.find(" ")<=a.size()){ a.replace(a.find(" "),1,""); } retu
阅读全文
摘要:#include <iostream> #include <iomanip> #include <ctime> using namespace std; int row=16; int col=16; int all[17][17]; bool black=true; bool whilt; int
阅读全文
摘要:#include <iostream> using namespace std; int n(int a,int b){ if(a==b){ return 1; } if(a>b){ swap(a,b); } return n(a,b-a)+1; } int main(){ int a,b; cin
阅读全文