用Python判斷一個三位數是否爲水仙花數

用Python判斷一個數是否爲水仙花數 num = int(input(「請輸入一個三位數:」)) hundreds_place = int(num // 100) # 找出這個三位數的百位 整除100取整數 ten_place = int(num / 10 % 10) # 找出這個三位數的十位 除以10再除10取模 one_place = int(num % 10) # 找出這個三位數的個位位
相關文章
相關標籤/搜索