标签:can content esc 个数 str 输入数据 span color desc
此博客链接:
1.亲和数(23min)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2040
#include<stdio.h> #include<math.h> #include<stdlib.h> #include<string.h> int main(void) { int M; scanf("%d",&M); while(M>0) { int A; int B; scanf("%d %d",&A,&B); int sum1=0; int sum2=0; int i=1; int j=1; for(i=1;i<=A/2;i++) { if(A%i==0) sum1=sum1+i; } for(j=1;j<=B/2;j++) { if(B%j==0) sum2=sum2+j; } if(sum1==B&&sum2==A) printf("YES"); else printf("NO"); printf("\n"); M--; } return 0; }
2.
标签:can content esc 个数 str 输入数据 span color desc
原文地址:https://www.cnblogs.com/ping2yingshi/p/12312859.html