水仙花數 C語言 SDUT

2021-09-09 07:55:29 字數 714 閱讀 5340

time limit: 1000 ms memory limit: 65536 kib

submit

statistic

春天是鮮花的季節,水仙花就是其中最迷人的代表,數學上有個水仙花數,是這樣定義的: 

「水仙花數」是指乙個三位數,它的各位數字的立方和等於其本身,比如:153=13+53+33。

現在要求輸出所有在m和n範圍內的水仙花數。

輸入資料有多組,每組佔一行,包括兩個整數m和n(100<=m<=n<=999)。

對於每個測試例項,要求輸出所有在給定範圍內的水仙花數,就是說,輸出的水仙花數必須大於等於m,並且小於等於n,如果有多個,則要求從小到大排列在一行內輸出,之間用乙個空格隔開;

如果給定的範圍內不存在水仙花數,則輸出no;

每個測試例項的輸出佔一行。

100 120

300 380

no

370 371

#include #include#includeint main()

if(sum == m)

else}}

if(count == 0)

printf("\n");

}return 0;

}

c語言 水仙花數

1.在螢幕上輸出以下圖案 2.求出0 999之間的所有 水仙花數 並輸出。水仙花數 是指乙個三位數,其各位數字的立方和確好等於該數本身,如 153 1 5 3?則153是乙個 水仙花數 在數論中,水仙花數 narcissistic number 也稱為自戀數 自冪數 阿姆斯壯數或阿姆斯特朗數 arm...

C 水仙花數

include include using namespace std void divide int,int int int void main int hun 0,ten 0,one 0 for int i 100 i 999 i divide i,hun,ten,one if i pow hu...

C語言求水仙花數

第一種方法 如下 include include include int main system pause return 0 第二種方法 如下 include include include int main system pause return 0 第三種方法,是對3位數水仙花數的乙個擴充套件...