/**
* @classname: que03
* @description:
* ●題目:判斷100到500之間,哪些數是水仙花數。 [水仙花數是指乙個n位正整數( n≥3 ),它的每個位上的數字的n次冪之和等於它本身。(例如: 1^3 + 5~3+ 3^3= 153) ]
* ●考點:流程控制、運算子
* @author: wanglt
* @createdate: 2023年2月25日
* */
public
class
que03
/** * 獲取三位數的水仙花數數量(範圍[front, back])
* * @param front
* @param back
* @return
*/public
static integer getsum
(int front,
int back)
int count =0;
for(
int i = front; i <= back; i++)}
return count;
}/**
* @param i
* @return
*/private
static
boolean
judge
(int num)
boolean flag =
false
;int a = num /
100;
int b = num /10%
10;int c = num %10;
if(a *
100+ b *
10+ c == math.
pow(a,3)
+ math.
pow(b,3)
+ math.
pow(c,3)
)return flag;
}}
求水仙花 ghpython 水仙花數02
今天咱們繼續來看看老潘微博裡的乙個python小案例,求水仙花數,這個小案例在前兩天已經分享了,今天分享另一種方法,常言道只要思想不滑坡,方法總比困難多,而且今天的方法個人覺得更pythonic一點。水仙花數 四葉玫瑰數 五角星數 由於2位數的自冪數不存在,這裡直接從100遍歷到100000 for...
水仙花數題解
水仙花數 3位數,其各位數字立方和為該數本身.include stdio.h void main int i,j,k,n 定義n的個位數為k,十位為j,百位為i printf narcissus numbers are for n 100 n 1000 n 使n從100 999迴圈 i n 100 ...
hdu 水仙花數
problem description 春天是鮮花的季節,水仙花就是其中最迷人的代表,數學上有個水仙花數,他是這樣定義的 水仙花數 是指乙個三位數,它的各位數字的立方和等於其本身,比如 153 1 3 5 3 3 3。現在要求輸出所有在m和n範圍內的水仙花數。input 輸入資料有多組,每組佔一行,...