fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int test;
  8.  
  9. test=51;
  10.  
  11. if(test>=60){
  12. if(test>=80){
  13. printf("合格");
  14.  
  15. }else{
  16. printf("仮合格");
  17. }
  18. }else{
  19. printf("不可");
  20. }
  21. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
仮合格