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.  
  13. if ( (absent <= 3) && (test >= 60) ) {
  14. printf("合格!\n");
  15. } else {
  16. printf("不合格!\n");
  17. }
  18.  
  19. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
合格!