2018年1月9日 星期二

Python: Calculate the sum of the digits in an integer

Python: Calculate the sum of the digits in an integer

Python Basic: Exercise-68 with Solution

Write a Python program to calculate the sum of the digits in an integer.
Sample Solution:-
num = int(input("Input a four digit numbers: "))
x  = num //1000
x1 = (num - x*1000)//100
x2 = (num - x*1000 - x1*100)//10
x3 = num - x*1000 - x1*100 - x2*10
print("The sum of digits in the number is", x,"+",x1,"+",x2,"+",x3,"=",x+x1+x2+x3)

========== RESTART: F:/Python_APSC/py-ex-basic-68.py ============
Input a four digit numbers: 4578
The sum of digits in the number is 4 + 5 + 7 + 8 = 24
>>> 

沒有留言:

張貼留言

CRC(循環冗餘檢查)

  CRC(循環冗餘檢查) 完整的 CRC(循環冗餘檢查)逐步演示器 。它支援自定義 生成多項式 與 資料位元流 ,並透過「下一步」按鈕展示二進制長除法(XOR 運算)的過程。 二進制長除法模擬 : CRC 的核心是模二除法(Modulo-2 Division),實務上就是不斷進...