WAPIP to accept 3 numbers and
the sum of those 3 numbers.
display
Answers
Answered by
0
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 : "))
result = str(n1 + n2 + n3)
print("The sum is " + result)
Similar questions
English,
6 months ago
English,
6 months ago
History,
11 months ago
Math,
11 months ago
Social Sciences,
1 year ago