algorithm To find largest of
3
numbers.
Answers
Answered by
0
Answer:
Hello buddy thanks for free points.
Answered by
0
Answer:
Python -
a= int(input())
b= int(input())
c= int(input())
if a>b:
if a>c:
print("a is the greatest")
like this for all the three numbers...
Explanation:
Similar questions