訂婚數是兩個數字的對,其除數總和等於另一個數字。
例如(a, b) 是一對訂婚數,如果s(a) = b 1 且s(b) = a 1,其中s(b) 是b 的等分和:等效條件是σ(a) = σ(b) = a b 1,其中σ 表示除數和函數。
前幾對訂婚號碼為:(48, 75)、(140, 195)、(1050, 1925) )、(1575, 1648)、(2024, 2295)、(5775, 6128)。
所有已知的訂婚號碼對都具有相反的奇偶性。任何一對相同的奇偶校驗數都必須超過 1010。
Step 1: Find the sum of all divisors for both numbers. Step 2: Finally check if the sum of the divisors of number added by one is equal to the other number or not. Step 3: If yes, it is a Betrothed number and otherwise not.
Input:a = 48 b = 75 Output: 48 and 75 are Betrothed numbers
48 的約數:1, 2, 3, 4, 6, 8 , 12, 16, 24。它們的和是 76。
75 的約數:1 , 3, 5, 15, 25。它們的和是 49。
使用 for 迴圈並檢查從 1 到 a-1 的每個數字。
檢查判斷是否能整除數字 a ,則循環。如果是,請將此數字新增至 aDivisorSum 中。循環完成後,aDivisorSum 包含 a 的所有除數總和。
類似地,找到第二個數字的所有除數總和並將其保存在 bDivisorSum 中。
現在檢查一個數的除數總和是否等於另一個數(無論是否加一)。如果是,請列印這兩個號碼都是訂婚號碼。否則就不是。
現場示範
#include <stdio.h> int main() { int i; int a,b; int aDivisorSum = 0; int bDivisorSum = 0; a=48 ; b=75 ; for( i = 1; i < a; i++) { if(a % i == 0) { aDivisorSum = aDivisorSum + i; } } for( i = 1; i < b; i++) { if(b % i == 0) { bDivisorSum = bDivisorSum + i; } } if(( a+1== bDivisorSum) && (b+1 == aDivisorSum)) { printf("%d and %d are Betrothed numbers</p><p>",a,b); } else { printf("%d and %d are not Betrothed numbers</p><p>",a,b); } }
48 and 75 are not Betrothed numbers
以上是在C語言中,預訂的數字是什麼意思?的詳細內容。更多資訊請關注PHP中文網其他相關文章!