nyoj 39 水仙花數

2022-05-07 21:30:07 字數 910 閱讀 7780

記憶體限制:64mb

時間限制:1000ms

special judge: no

accepted:35

submit:70

請判斷乙個數是不是水仙花數。

其中水仙花數定義各個位數立方和等於它本身的三位數。

有多組測試資料,每組測試資料以包含乙個整數n(100<=n<1000)

輸入0表示程式輸入結束。

如果n是水仙花數就輸出yes

否則輸出no

複製

153

1540

yes

nops:

①、取整數中的每乙個數的方法:

1

while

(a)2

c/c++**實現(ac):

1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 

1011

using

namespace

std;

12const

int maxn = 510;13

14int

main()

1526

if (cnt ==t)

27 printf("

yes\n");

28else

29 printf("

no\n");

30}3132

return0;

33 }

nyoj 39 水仙花數

記憶體限制 64mb 時間限制 1000ms special judge no accepted 35 submit 70 請判斷乙個數是不是水仙花數。其中水仙花數定義各個位數立方和等於它本身的三位數。有多組測試資料,每組測試資料以包含乙個整數n 100 n 1000 輸入0表示程式輸入結束。如果n...

39 水仙花數

時間限制 1000 ms 記憶體限制 65535 kb難度 0 描述 請判斷乙個數是不是水仙花數。其中水仙花數定義各個位數立方和等於它本身的三位數。輸入有多組測試資料,每組測試資料以包含乙個整數n 100 n 1000 輸入0表示程式輸入結束。輸出如果n是水仙花數就輸出yes 否則輸出no 樣例輸入...

NYoj 水仙花數

描述 請判斷乙個數是不是水仙花數。其中水仙花數定義各個位數立方和等於它本身的三位數。輸入 有多組測試資料,每組測試資料以包含乙個整數n 100 n 1000 輸入0表示程式輸入結束。輸出如果n是水仙花數就輸出yes 否則輸出no 樣例輸入 153 1540 樣例輸出 yes no include u...