switch (mark / 10) {
case 10:
case 9:
case 8:
printf("The Grade is A.\n");
break;
case 7:
printf("The Grade is B.\n");
}
}
}
mark >= 75 gives Grade A.
May I know how to edit the case 7 so that it can detect 75 and above as Grade A.
Thank You!