Computer Science, asked by eshakhan03472, 6 months ago

write a program that reads three numbers and print the largest one

Answers

Answered by Anonymous
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 ERB
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