Thursday, June 17, 2021

Addition of Two Numbers With Do You Want To Try Again Using Python

 A simple program to ask the user to give two numbers and then the program will compute the sum of two numbers and ask the use if the user want to try again using python programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website, kindly contact me also at my email address also. Thank you.

My email address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com

My mobile number here in the Philippines is 09173084360.





Program Listing

num1 = int(input("Enter first number: "))
num2 = int(input("Enter second number: "))
sum = num1 + num2
print("The sum of {0} and {1} is {2}.".format(num1, num2, sum))
ans = input("Do you want to try again?: ")

while ans.upper() == "Y":
num1 = int(input("Enter first number: "))
num2 = int(input("Enter second number: "))
sum = num1 + num2
print("The sum of {0} and {1} is {2}." .format(num1,num2, sum))
ans = input("Do you want to try again?: ")

print("Thank you!")

No comments:

Post a Comment