write a program that reads three numbers and print the largest one
Answers
Answered by
1
Answer:
printf ( "%d is the largest number." , B); if (C >= A && C >= B) Output: Enter the numbers A, B and C: 2 8 1 8 is the largest number.
Answered by
1
Answer:
##the program is written in python
a= int(input("first number"))
b= int(input("second number"))
c= int(input("first number"))
ans = max(a, b, c)
print(ans)
Similar questions