fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a=50;
  6.  
  7. if(a>=60){
  8. printf("及格\n");
  9. }else {
  10. printf("loser 打回\n");
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5332KB
stdin
Standard input is empty
stdout
loser 打回