fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. float a;
  6. scanf("%f",&a);
  7. if(a>=60)
  8. printf("及格");
  9. else
  10. printf("不及格");
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5288KB
stdin
70
stdout
及格