fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int test;
  6.  
  7. test=70;
  8.  
  9. if(test>=60) {
  10. printf("合格\n");
  11. }else{
  12. printf("不合格\n");
  13. }
  14. }
Success #stdin #stdout 0s 5224KB
stdin
Standard input is empty
stdout
合格