Information
- ID
- 6798
- Time
- 1000ms
- Memory
- 128MiB
- Difficulty
- 6
- Tags
- (None)
- # Submissions
- 88
- Accepted
- 26
- Uploaded By
#include<iostream>
#include<math.h>
using namespace std;
int num(int n)
{
int sum = 0;
for (int i = 1;i < n;i++)
if (n % i == 0)
sum += i;
return sum;
}
int main() {
int a, b;
for ( a = 1;a++;)
{
b = num(a);
if (a != b && a == num(b))
{
cout << a <<" "<< b;
break;
}
}
system("pause");
return 0;
}
By signing up a 追梦算法网 universal account, you can submit code and join discussions in all online judging services provided by us.