首页
/
每日頭條
/
生活
/
求水仙花數的方法
求水仙花數的方法
更新时间:2024-11-11 12:44:26

求水仙花數的方法(求變種水仙花數)1

題目:變種水仙花數 - Lily Number:把任意的數字,從中間拆分成兩個數字,比如1461 可以拆分成(1和461),(14和61),(146和1),如果所有拆分後的乘積之和等于自身,則是一個Lily Number。例如:1461 = 1*461 14*61 146*1

求出 5位數中的所有 Lily Number。

#include <stdio.h> #include <math.h> int main(){ int number,sum,count = 5; // count表示幾位數 int digit; for(int number = pow(10,count-1);number < pow(10,count);number ){ sum = 0; digit = pow(10,count - 1); while(digit > 1){ sum = (number / digit) * (number % digit); //digit=1000 1*461 14*61 146* 1 digit /= 10; // 100 10 1 } if(sum == number){ printf("%d ",number); } } return 0; }

,
Comments
Welcome to tft每日頭條 comments! Please keep conversations courteous and on-topic. To fosterproductive and respectful conversations, you may see comments from our Community Managers.
Sign up to post
Sort by
Show More Comments
Copyright 2023-2024 - www.tftnews.com All Rights Reserved