I need help immediately. Please I dont know where to start. If possible please write out the whole program I'd appreciate it.
Sounds like you've waited to till the last minute to do your assignment. I don't think I have to tell you that this is a bad practice. Why don't you crack open a C++ textbook, or use google, or something, and try and solve the problem yourself? The purpose of this board isn't to get your programming homework done for you, but instead to come and ask questions so that others can help you learn.
Yes I know but I am trying to study for a test tomorrow and was hoping if someone can take some work off my shoulders. I absolutely agree with what you are saying. I am taking five classes and its really hard to keep up. This is my first c++ class and it seems very difficult for me.
okay i have tried writing out the program out myself and this is what i have came up with. Let me know if there are any errors because I dont have c++ and it wont run on my laptop anyways.
#include<iostream>
#include<iomanip>
using namespace std;
int main ( )
{
double grade1, grade2, grade3, grade4, grade5;
double avg;
int students;
char lettergrade;
cout<<"How many students there are to be processed?\n";
cin>>students;
for(int i=1; i<=students; i++) {