11 2023 档案
摘要:#include <bits/stdc++.h> using namespace std; struct card{ //属性 string name; int id; string classroom; float money; int money_type;//0人民币 1美元 2 泰铢 str
阅读全文
摘要:#include <bits/stdc++.h> using namespace std; int index=0; int sum[1000]; int jia(string a,int i){ if(a.find("+")<0 || a.length<a.find("+")){ return s
阅读全文
摘要:#include <bits/stdc++.h> using namespace std; int js(string a,string b);//计算 //int jianfa(string a); //int chengfa(string a); //int chufa(string a); s
阅读全文
摘要:#include <iostream> #include <iomanip> using namespace std; int row=16; int col=16; int all[17][17]; bool black=true; bool whilt; int x,y; int a=1; in
阅读全文
摘要:#include <bits/stdc++.h> using namespace std; int f(int a,int b){ if(a==b){ return 1; } if(a>b){ swap(a,b); } return f(a,b-a)+1; } int main(){ int b,m
阅读全文
摘要:#include <bits/stdc++.h> #include <fstream> using namespace std; int main(int argc, char** argv) { char data[100]; ofstream a; a.open("hehe.txt"); cou
阅读全文