11 2023 档案

摘要:#include <iostream> #include <windows.h> #include <fstream> using namespace std; struct card{ //属性 string name; int id; string classroom; float money= 阅读全文
posted @ 2023-11-19 10:02 陈若麟 阅读(6) 评论(0) 推荐(0) 编辑
摘要:#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 阅读全文
posted @ 2023-11-12 09:24 陈若麟 阅读(15) 评论(0) 推荐(0) 编辑
摘要:#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 阅读全文
posted @ 2023-11-05 09:58 陈若麟 阅读(4) 评论(0) 推荐(0) 编辑
摘要:#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 阅读全文
posted @ 2023-11-04 09:47 陈若麟 阅读(5) 评论(0) 推荐(0) 编辑