Forrest


私信TA

用户名:dotcpp0717441

访问量:4006

签 名:

等  级
排  名 88
经  验 9136
参赛次数 1
文章发表 121
年  龄 0
在职情况 教师
学  校 优学乐程
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<iostream>
using namespace std;
int main()
{
	int n;
	cin >> n;
	while(n --){
		int x, y, s = 0;
		cin >> x >> y;
		for(int i = 1; i < x; i ++)
			if (x % i == 0) s += i;
		if(s == y){
			s = 0;
			for(int i = 1; i < y; i ++){
				if(y % i == 0) s += i;
			}
			if(s == x) cout << "YES" << endl;
			else cout << "NO" << endl;
		}
		else cout << "NO" << endl;
	}
	return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »