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