3497.水仙の数
627 ワード
3497.水仙の数
Description
三桁ABCがABC=A 3+B 3+C 3を満たす場合、ABCを水仙数と呼ぶ.例えば153は水仙数である.プログラミングは100~999の範囲内のすべての水仙数を探し出す.
Input
なし
Output
すべての水仙の数を出力し、水仙の数ごとに1行を占める.
Problem Source
林瀚
Description
三桁ABCがABC=A 3+B 3+C 3を満たす場合、ABCを水仙数と呼ぶ.例えば153は水仙数である.プログラミングは100~999の範囲内のすべての水仙数を探し出す.
Input
なし
Output
すべての水仙の数を出力し、水仙の数ごとに1行を占める.
Problem Source
林瀚
// source code of submission 955534, Zhongshan University Online Judge System
#include
using namespace std;
int main ()
{
for (int num = 100;num <= 999;num ++)
{
int a = num / 100;
int b = (num % 100) / 10;
int c = ((num % 100) % 10);
if (a*a*a+b*b*b+c*c*c == num)
cout << num << endl;
}
return 0;
}