wap to accept 3 numbers & findout greatest one (comp program)
Answers
Answered by
0
Answer:
a,b,c
if(a>b&&a>c)
print a is the biggest
else if (b>c)
print b is the biggest
else
print c is the biggest
Kumarshreedhar11:
no its wrong
Answered by
1
Answer:
hello,
its using python
Explanation:
# program to accept 3 numbers & find out greatest one
a=int(input("enter the first number"))
b=int(input("enter the second number"))
c=int(input("enter the third number"))
if a>b and a>c:
print(a, "the the largest")
elif b>a and b>c:
print(b,"is the largest")
elif c>a and c>b:
print(c,"is the largest")
______________________
hope it helps you
please mark brainliest
@ItzSnowySecret07
Similar questions