Computer Science, asked by nikki6061, 11 months ago

Write a program to find the gratest among three numbers

Answers

Answered by vibhoremohnot72
0

Answer:

Using Python

a = input("Input a number : ");

b = input("Input a number : ");

c = input("Input a number : ");

if a>b and a>c:

printf(a, "is greatest number.");

elseif b>a and b>c:

printf(b, "is greatest number.");

elseif c>b and c>a:

printf(c, "is greatest number.");

else:

return;

If you find my answer good enough kindly mark it as Brainliest.

Similar questions