Accept the three numbers from users then calculate the sum and average of three numbers in qbasic.
Answers
Answered by
2
Answer:
x = input("Enter first number")
y = input ("enter second number")
z = input (" enter third number")
sum = x + y + z
print sum
avg = sum / 3
Explanation:
hope it helps
please like
Similar questions