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 : "))

RESULT = STR(n1 + n2 + n3)

PRINT("The sum is " + result)



Discussion

No Comment Found