Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Please assist me with this project. I need it asap. Comment throughout coding. C

ID: 3824111 • Letter: P

Question

Please assist me with this project. I need it asap. Comment throughout coding. C++ I need exact sample output just like the one shown below.

Description: This program will read a data file that will contain students' scores for 5 Computer Science (CS) tests. Each student record will contain his her last name, first name, numeric student ID, student username, 5 test scores, average for these five scores, and grade for CS course. The file will be processed by the program and will produce a report The report contains seven parts 1) The students' usernames 2) The average score for each student's five tests 3) The grade for each student's CS course. 4) The average CS scores for the class. 5) The total number of students with grades A. B. C. D. and F 6) The sorted student names and IDs based on user choice: descending or ascending order of grades. 7 Search a student grade by entering student user name ID (See the attached sample input and output for example.)

Explanation / Answer

#include <iostream>
#include <iomanip>
#include <cmath>
#include <string>
using namespace std;
int main()
{
   string studentname;
   int score;
   int studentscore;
   int totalpoints;
   int percentage;
   int count;
   float finalscore;
   count = 1;
   while (count <=9)
cout <<"Please enter the student's name"<< endl;
       cin >>studentscore;
       cout <<"Please enter the student's score"<< endl;
       cin >>score;
       cout <<"Please enter the total points"<< endl;
       cin >> totalpoints;
       count = count++
       finalscore = score / totalpoints;
       percentage = finalscore * 100;
if(percentage >= 90)
       cout<< studentname<<percentage<<"%"<<finalscore<< "A"<<endl;
       if (percentage >=80&&percentage<90)
       cout<<studentname <<percentage<< "%"<<finalscore<<"B"<<endl;
       if(percentage >=70&& percentage<80)
       cout<<studentname<<percentage<< "%"<<finalscore<"C"<<endl;
       if (percentage >= 60 &&percentage<70)
       cout<<studentname<<percentage<<"%"<<finalscore<<"D"<<endl;
      
   }
   return 0;
}