28 lines
666 B
C
28 lines
666 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int input;
|
|
scanf("%i", &input);
|
|
printf("Your input was: %i\n", input);
|
|
|
|
if ((input >= 0) && (input <= 100)) {
|
|
char letter;
|
|
if ((input/10) >= 9) {
|
|
letter = 'A';
|
|
} else if ((input/10) >= 8) {
|
|
letter = 'B';
|
|
} else if ((input/10) >= 7) {
|
|
letter = 'C';
|
|
} else if ((input/10) >= 6) {
|
|
letter = 'D';
|
|
} else {
|
|
letter = 'F';
|
|
}
|
|
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;
|
|
} |