Answer:
if statements
Explanation:
suppose a, b and c are the numbers:
if ((a>=b) && (a>=c)) {
printf("a is largest");
} else if ((b>=a) && (b>=c)) {
printf("b is largest");
} else {
printf("c is largest");
}
Let's go with python
If numbers be x,y,z
Program:-
[tex]\tt if\: x>y\;and x>z:[/tex]
[tex]\tt\qquad Greatest=x[/tex]
[tex]\tt elif\:y>x\;and\;y>z:[/tex]
[tex]\tt \qquad Greatest=y[/tex]
[tex]\tt else:[/tex]
[tex]\tt\qquad Greatest=z[/tex]
[tex]\tt print("Greatest\:no=",Greatest)[/tex]