Algorithm to find sum of the given n numbers in python
Answers
Answered by
2
Answer:
n=int(input("Enter a number:"))
tot=0
while(n>0):
dig=n%10
tot=tot+dig
n=n//10
print("The total sum of digits is:",tote
Explanation:
1. User must first enter the value and store it in a variable.
2. The while loop is used and the last digit of the number is obtained by using the modulus operator.
3. The digit is added to another variable each time the loop is executed.
4. This loop terminates when the value of the number is 0.
5. The total sum of the number is then printed.
Similar questions
Biology,
6 months ago
Math,
6 months ago
Biology,
6 months ago
History,
1 year ago
Computer Science,
1 year ago