letter-grade.c: Check if input is between 0 and 100 (inclusive)
This commit is contained in:
parent
bd022c5f22
commit
2beb50bb25
@ -5,6 +5,7 @@ int main() {
|
|||||||
scanf("%i", &input);
|
scanf("%i", &input);
|
||||||
printf("Your input was: %i\n", input);
|
printf("Your input was: %i\n", input);
|
||||||
|
|
||||||
|
if ((input >= 0) && (input <= 100)) {
|
||||||
char letter;
|
char letter;
|
||||||
if ((input/10) >= 9) {
|
if ((input/10) >= 9) {
|
||||||
letter = 'A';
|
letter = 'A';
|
||||||
@ -17,7 +18,11 @@ int main() {
|
|||||||
} else {
|
} else {
|
||||||
letter = 'F';
|
letter = 'F';
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Your letter grade is %c\n", letter);
|
printf("Your letter grade is %c\n", letter);
|
||||||
|
} else {
|
||||||
|
printf("ERROR: Input must be no more than 100 and no less than 0\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user