fork download
  1. /* Pass or Fail */
  2.  
  3. #include<stdio.h>
  4.  
  5. int main()
  6. {
  7. int per_mark;
  8. printf("\n Enter the percentage of markes: ");
  9. scanf("%d", &per_mark);
  10. if(per_mark<40)
  11. printf("\n The grade is Fail.");
  12. else if(per_mark>=40 && per_mark<60)
  13. printf("\n The grade is second division.");
  14. else if (per_mark>=60 && per_mark<75)
  15. printf("\n The grade is Frist division.");
  16. else
  17. printf("\n The grrade is star.");
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
 Enter the percentage of markes: 
 The grrade is star.