fork download
  1. #include <stdio.h>
  2. main()
  3. {
  4. int score ;
  5. printf("enter your score: ");
  6. scanf("%d",&score);
  7. if (score >= 80)
  8. {
  9. printf("!!YOU PASSED GOOD JOB!!");
  10. }
  11. else if (score >= 60)
  12. {
  13. printf ("!YOU PASSED!");
  14. }
  15. else if (score <60) {
  16. printf ("YOU NOT PASSED TT");
  17. }
  18. return 0;
  19.  
  20. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
enter your score: !!YOU PASSED GOOD JOB!!