Saved Bookmarks
| 1. |
Write a program that takes name of the student ,marks(out of 100) of 5 subjectsfrom user and calculate total marks ,percentage and grade as per the following criteria:percentage grade>=75 A>=60 and |
|
Answer» Explanation: Write a C program to INPUT marks of five SUBJECTS Physics, Chemistry, Biology, Mathematics and Computer, calculate percentage and GRADE according to given CONDITIONS:Write a C program to input marks of five subjects Physics, Chemistry, Biology, Mathematics and Computer, calculate percentage and grade according to given conditions:If percentage >= 90% : Grade AWrite a C program to input marks of five subjects Physics, Chemistry, Biology, Mathematics and Computer, calculate percentage and grade according to given conditions:If percentage >= 90% : Grade AIf percentage >= 80% : Grade BWrite a C program to input marks of five subjects Physics, Chemistry, Biology, Mathematics and Computer, calculate percentage and grade according to given conditions:If percentage >= 90% : Grade AIf percentage >= 80% : Grade BIF percentage >= 70% : Grade CWrite a C program to input marks of five subjects Physics, Chemistry, Biology, Mathematics and Computer, calculate percentage and grade according to given conditions:If percentage >= 90% : Grade AIf percentage >= 80% : Grade BIf percentage >= 70% : Grade CIf percentage >= 60% : Grade DWrite a C program to input marks of five subjects Physics, Chemistry, Biology, Mathematics and Computer, calculate percentage and grade according to given conditions:If percentage >= 90% : Grade AIf percentage >= 80% : Grade BIf percentage >= 70% : Grade CIf percentage >= 60% : Grade DIf percentage >= 40% : Grade EWrite a C program to input marks of five subjects Physics, Chemistry, Biology, Mathematics and Computer, calculate percentage and grade according to given conditions:If percentage >= 90% : Grade AIf percentage >= 80% : Grade BIf percentage >= 70% : Grade CIf percentage >= 60% : Grade DIf percentage >= 40% : Grade EIf percentage < 40% : Grademake me as brainalist okay PLEASE |
|