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