解题思路:
注意事项:
参考代码:
#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 人评分