20 lines
505 B
C
20 lines
505 B
C
// WAP to find out maximum out of three numbers using nested if..else.
|
|
|
|
void main() {
|
|
int n1, n2, n3;
|
|
printf("Enter three numbers: ");
|
|
scanf("%d %d %d", &n1, &n2, &n3);
|
|
|
|
if (n1 >= n2) {
|
|
if (n1 >= n3)
|
|
printf("%d is the largest number.", n1);
|
|
else
|
|
printf("%d is the largest number.", n3);
|
|
} else {
|
|
if (n2 >= n3)
|
|
printf("%d is the largest number.", n2);
|
|
else
|
|
printf("%d is the largest number.", n3);
|
|
}
|
|
}
|