fork download
  1.  
  2. #include <stdio.h>
  3. #include <stdbool.h>
  4. main( )
  5. {
  6. int absent, test, flag;
  7. absent = 2;
  8. test = 70;
  9. flag = ( (absent <= 3) && (test >= 60) );
  10.  
  11. printf("結果%d",flag);//結果表示 1:合格,0:不合格
  12. }
  13.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
結果1