2023年2月1日
摘要: #include <iostream> using namespace std; int main() { int a,b,c,a1,b1,c1,x = 1; cin>>a>>b>>c; while(1){ x++; a1 = a%x; b1 = b%x; c1 = c%x; if(a1==b1 & 阅读全文
posted @ 2023-02-01 18:09 黛玉醉打将门神 阅读(121) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main() { int m=0; cin>>m; int n; cin>>n; int a; int meiyou=0; for(int i=0;i<n;i++){ cin>>a; if(a<=m){ m=m 阅读全文
posted @ 2023-02-01 17:29 黛玉醉打将门神 阅读(9) 评论(0) 推荐(0) 编辑
  2023年1月31日
摘要: 亲和数 #include <iostream> using namespace std; int yinzizhihe(int a){ int b = 0; for(int i = 1;i<a;i++){ if(a%i==0){ b = b+i; } } return b; } int main(){ in 阅读全文
posted @ 2023-01-31 18:00 黛玉醉打将门神 阅读(4) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main(){ int x,g; cin>>x>>g; if(x>=10 || g>=20){ cout<<"1"; }else{ cout<<"0"; } return 0; } 阅读全文
posted @ 2023-01-31 17:48 黛玉醉打将门神 阅读(13) 评论(0) 推荐(0) 编辑