Computer Science, asked by afgq1a, 9 months ago

write a program that assigns three different integers and print the greatest of there​

Answers

Answered by BLANKBABA
1

Answer:

You haven't mention language so I'm writing logic only

Explanation:

if(a>b)&&(b>c){

print("a is greatest)

}

else if(b>a)&&(a>c){

print("b is greatest")

}

else{

print("c is greatest)

}

Similar questions