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