摘要: #include <iostream> using namespace std; int gcd(int a, int b) { if (a % b==0) return b; else return gcd(b, a % b); } int x, y; int main(){ cin >> x > 阅读全文
posted @ 2022-05-01 20:56 墨燃云 阅读(34) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <cstring>using namespace std;struct sign{ char name[20]; int num; int flag;}x[105],y[105],z[105];int main(){ int n; cin>>n 阅读全文
posted @ 2022-05-01 20:54 墨燃云 阅读(742) 评论(0) 推荐(0) 编辑