fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int score;
  5. printf("Enter your score: ");
  6. scanf("%d", &score);
  7.  
  8. if (score >= 80) {
  9. printf("Grade: A\n");
  10. } else if (score >= 70) {
  11. printf("Grade: B\n");
  12. } else if (score >= 60) {
  13. printf("Grade: C\n");
  14. } else if (score >= 50) {
  15. printf("Grade: D\n");
  16. } else {
  17. printf("Grade: F\n");
  18. }
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Enter your score: Grade: A