write a program to compute final grades for Introduction to Computers course. For each student the program should ask the user to enter first name, last name, age, the over all Percentage and then display the student's final grade (use structure to store these information and another to store Percentage and grade). The final grade is calculated by, if Percentage is grater than or equal 90 the grade is 'A'. if Percentage is grater than or equal 57 the grade is 'B', and the Percentage is anything else the grade is 'F', the program should display output like that:
OUTPUT:
Enter first name: Ahmed
Enter last name: Ali
Enter age: 19
Enter overall percent: 98
Your overall percent score is 98 for a grade of A
Write a C++ program for an amusement park to display the bill for the cashier. The pricing schedule is as follows:
Category Price
Children $ 10.00 each
Adults $ 20.50 each
1 answer