fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int x;
  5. int temp;
  6. scanf("%d",&x);
  7. if (x<60){
  8. printf("D\n");
  9. }
  10. else if (x>=90){
  11. printf("S\n");
  12. }
  13. else if (x>=80){
  14. printf("A\n");
  15. }
  16. else
  17. printf("B\n");
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0.01s 5316KB
stdin
90
stdout
S