Facebook
From Whipped Parrot, 1 Year ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 116
  1.  
  2. ![image.png](https://cdn.steemitimages.com/DQmY2bxKxNeTq3MYBe1hdtLBHqDaDyyghyWBhVpTMj1p9qu/image.png)
  3.  
  4. ![image.png](https://cdn.steemitimages.com/DQmaURcHaZEWZa9k61gbmcBJizbg2VstHZRr7AUJqGheeEQ/image.png)
  5.  
  6. #include <stdio.h>
  7. main ()
  8.  
  9. {
  10.     int r;
  11.     printf("What is your result?\n\n");
  12.     scanf("%d",&r);
  13.  
  14.     if (r>=80)
  15.     {
  16.         printf("\n\nYou earned grade A+.\n\n");
  17.     }
  18.  
  19.     else if (r>=70 && r<80)
  20.     {
  21.         printf("\n\nYou earned grade A.\n\n");
  22.     }
  23.  
  24.     else if (r>=60 && r<70)
  25.     {
  26.         printf("\n\nYou earned grade A-.\n\n");
  27.     }
  28.  
  29.      else
  30.     {
  31.         printf("\n\nUnknown Grade\n\n");
  32.  
  33.     }
  34.     return 0;
  35. }
  36.