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