Saved Bookmarks
| 1. |
WAPIP to accept 3 numbers andthe sum of those 3 numbers.display |
|
Answer» If you want the program in PYTHON, then the code is following :- n1 = FLOAT(input("Enter first number : ")) n2 = float(input("Enter second number : ")) n3 = float(input("Enter third number : ")) PRINT("The sum is " + result) |
|