fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int test;
  8.  
  9. test = 90;
  10.  
  11. if (test >= 60) {
  12. if (test >= 80 ) {
  13. printf("合格");
  14. } else {
  15. printf("仮合格");
  16. }
  17. } else {
  18. printf("不合格");
  19. }
  20.  
  21. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
合格