fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int x;
  5. scanf("%d",&x);
  6. if ( x >= 90)
  7. printf("sクラスです\n");
  8. else if ( x >= 80)
  9. printf("Aクラスです\n");
  10. else if ( x >= 60)
  11. printf("Bクラスです\n");
  12. else
  13. printf("Fクラスです\n");
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.01s 5288KB
stdin
68
stdout
Bクラスです