給定一個數字n,我們需要檢查其各位數字總和是否能整除n。為了找出答案,我們需要將所有數字從個位開始相加,然後用最終的和去除以該數字。
例如我們有一個數字"521",我們需要找出其各位數字之和,即"5 2 1 = 8",但是521不能被8整除,餘數不為0。
再舉個例子,"60",其各位數字之和為"6 0 = 6",6能夠整除60,餘數為0。
Input: 55 Output: No Explanation: 5+5 = 10; 55 not divisible by 10 Input: 12 Output: Yes Explanation: 1+2 = 3; 12 is divisible by 3
下面使用的方法如下: −
為了解決這個問題,我們需要從輸入中取得每個數字,並計算每個數字的和,然後檢查它是否能整除這個數字。
In function int isDivisible(long int num) Step 1-> Declare and initialize temp = num, sum = 0 Step 2-> Loop While num Declare and initialize k as num % 10 Set sum as sum + k Set num as num / 10 End Loop Step 3-> If temp % sum == 0 then, Return 1 Step 4-> Return 0 End function In main() Step 1-> Declare and initialize num as 55 Step 2-> If isDivisible(num) then, Print "yes " Step 3-> Else Print "no "
示範
#include <stdio.h> // This function will check // whether the given number is divisible // by sum of its digits int isDivisible(long int num) { long int temp = num; // Find sum of digits int sum = 0; while (num) { int k = num % 10; sum = sum + k; num = num / 10; } // check if sum of digits divides num if (temp % sum == 0) return 1; return 0; } int main() { long int num = 55; if(isDivisible(num)) printf("yes</p><p>"); else printf("no</p><p>"); return 0; }
如果執行上述程式碼,將會產生以下輸出−
No
以上是C程式檢查一個數字是否可被其各位數字之和整除的詳細內容。更多資訊請關注PHP中文網其他相關文章!