fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int score;
  5.  
  6. printf("点数を入力してください(0~100): ");
  7. scanf("%d", &score);
  8.  
  9. if (score >= 60) {
  10. printf("合格です。\n");
  11. } else {
  12. printf("不合格です。\n");
  13. }
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5272KB
stdin
20
stdout
点数を入力してください(0~100): 不合格です。