From 0a4002e05f11bc9828e8dec7791c42ce6d690b88 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Thu, 22 Oct 2020 22:59:54 -0500 Subject: [PATCH] letter-grade.c: Change printf to %li instead of %i and move return 0; inside if statement --- letter-grade.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/letter-grade.c b/letter-grade.c index 69f8527..677a4f4 100644 --- a/letter-grade.c +++ b/letter-grade.c @@ -2,12 +2,13 @@ #include int main() { + printf("Please enter a whole number percentage (0-100): "); char inputText[4]; fgets(inputText, 4, stdin); printf("inputText: %s\n", inputText); long int input; input = strtol(inputText, NULL, 0); - printf("input: %i\n", input); + printf("input: %li\n", input); if ((input >= 0) && (input <= 100)) { char letter; @@ -33,10 +34,9 @@ int main() { } printf("Your letter grade is %c\n", letter); + return 0; } else { printf("ERROR: Input must be no more than 100 and no less than 0\n"); return 1; } - - return 0; }