Advertisements
Advertisements
प्रश्न
Write a program to find the sum of digits of an integer number, input by the user.
थोडक्यात उत्तर
उत्तर
The program can be written in two ways.
- The number entered by the user can be converted to an integer and then by using the 'modulus' and 'floor' operators it can be added digit by digit to a variable 'sum'.
- The number is iterated as a string and just before adding it to the 'sum' variable, the character is converted to the integer data type.
Program 1:
#Program to find sum of digits of an integer number
#Initializing the sum to zero
sum = 0
#Getting user input
n = int(input("Enter the number: "))
# looping through each digit of the number
# Modulo by 10 will give the first digit and
# floor operator decreases the digit 1 by 1
while n > 0:
digit = n % 10
sum = sum + digit
n = n//10
# Printing the sum
print("The sum of digits of the number is",sum)
OUTPUT:
Enter the number: 23
The sum of digits of the number is 5
Program 2:
#Initializing the sum to zero
sum = 0
#Asking the user for input and storing it as a string
n = input("Enter the number: ")
#looping through each digit of the string
#Converting it to int and then adding it to the sum
for i in n:
sum = sum + int(i)
# Printing the sum
print("The sum of digits of the number is",sum)
OUTPUT:
Enter the number: 44
The sum of digits of the number is 8.
shaalaa.com
The ‘While’ Loop
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Find the output of the following program segment:
a = 110
while a > 100:
print(a)
a -= 2
Find the output of the following program segment:
i = 0; sum = 0
while i < 9:
if i % 4 == 0:
sum = sum + i
i = i + 2
print (sum)
Find the output of the following program segment:
var = 7
while var > 0:
print ('Current variable value: ', var)
var = var -1
if var == 3:
break
else:
if var == 6:
var = var -1
continue
print ("Good bye!")
Write a function that checks whether an input number is a palindrome or not.
[Note: A number or a string is called palindrome if it appears the same when written in reverse order also. For example, 12321 is a palindrome while 123421 is not a palindrome.]