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