Write a simple program , to show the student passed or fail , when the
percentage is entered. please answer fast
Answers
Answered by
14
Answer:
Divide Pass by Total
Divide the number of students who passed the test by the number of students who took the test. To continue the example just given, you know that 740 students passed the test and 794 students took the test.
Answered by
1
Answer:student pass or fail
Explanation:
Printf("enter the percentages");
Scanf("%d",&n);
if(n>=60%)
{
Printf("pass");
}
else{
Printf("fail");
}
Similar questions