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