Let's go with python
If numbers be x,y,z
Program:-
Answer:
if statements
Step-by-step 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");
}
1.6m questions
2.0m answers