Can\'t figure out how to make this program compile. There are a couple errors...
ID: 654019 • Letter: C
Question
Can't figure out how to make this program compile. There are a couple errors... any help? It's in C++. The requirements for the assignment are written underneath my code... any help appreciated, thanks..
#include
#include
#include
#include
#include
using namespace std;
struct studt
{
string ln;
string fn;
char crc;
int tg1,tg2,tg3;
};
int main()
{
ifstream ipf;
ofstream opf;
string ip,op;
int ch=0,n,i,rownum, z0;
double average=0.0, crc_avg=0.0;
while(ch!=1)
{
cout<<"please enter the name of the input file"'< cout<<"filename : ";
cin>>ip;
ipf.open(ip.c_str());
if (ipf.fail())
{
cout<<" the given file was incorrect";
cout<<" make sure file exist ";
cout< }
else
ch=1;
}
ipf>>n;
studt s[n];
while(!ipf.eof())
{
for(rownum=0; rownum {
ipf>>s[rownum].ln;
ipf>>s[rownum].fn;
ipf>>s[rownum].crc;
ipf>>s[rownum].tg1;
ipf>>s[rownum].tg2;
ipf>>s[rownum].fg3;
}
}
ipf.close();
ch=0;
while(ch!=1)
{
cout<<"please enter the name of the output file "< cout<<"file name:";
cin>>op;
opf.open(op.c_str());
if(opf.fail())
{
cout<<" file" < avg=(0.3 * s[rownum].tg1) +(0.3* s[rownum].tg2) +(0.4 * s[rownum].fg3);
crc_avg=crc_avg+avg;
z++;
opf< avg=(0.3 * s[rownum].tg1) +(0.3* s[rownum].tg2) +(0.4 * s[rownum].fg3);
crc_avg=crc_avg+avg;
z++;
opf< avg=(0.3 * s[rownum].tg1) +(0.3* s[rownum].tg2) +(0.4 * s[rownum].fg3);
crc_avg=crc_avg+avg;
z++;
opf<
You will write a program that reads and stores student data from an input file, computes and stores each student's test average, then prints a report to an output file, along with class averages.
Input File Format
The first line of the input file will be a single integer number -- this value tells how many records are in the file.
After this, each line represents one student record. Each record consists of the following fields (in this order), separated by commas:
last name: a character string (assume no more than 20 characters)
first name: a character string (assume no more than 20 characters)
course: a single character. 'M' for math, 'H' for history, 'E' for English. Represents the course that the student is taking.
Test 1 grade: an integer
Test 2 grade: an integer
Final exam grade: an integer
You may assume that a file is in the correct format, that there is no trailing whitespace in the file, and that the types and limits will be as described above
A sample input file
Program Details
Create a structure type called Student. A variable of type Student should contain fields for the following:
last name
first name
course
test 1 grade
test 2 grade
final exam grade
test average -- (use type double)
The other fields match the data described in the input file format section. Use C-strings for the last name and first name.
Your program should start by asking the user to type the names of the input and output files (in that order). Whenever a bad filename is entered, print an error message and prompt the user to re-enter the filename.
Open the input file and read the records into an array of Student structures. You'll need to create this array dynamically, because you won't know how many records there are until you start reading the file itself. The data from each record in the file should be stored in one Student structure (i.e. one array slot per student record)
For each student, compute the test average and store it in the test average member variable for that student struct. The test average should be computed according to the following weights for the tests:
Print a grade summary report to the output file, as specified below in the "Output File Format" section
Close the files and clean up any dynamically allocated space before ending the program
Output File Format
The summary report is to be sorted by course, with English first, then History, then Math. Each course's section in the summary should have a header, with the student detail records printed below
The summary output of a student record should consist of:
The student's name, in the format firstName lastName -- with no extra punctuation between the names.
Test Average, printed to 2 decimal places
Letter Grade of the test average, based on standard 10-point scale (i.e. 90-100 = A, 80-89.99 = B, etc.)
After each course section, print the test average for the class. (This means there will be three class averages -- one for English, one for History, one for Math)
See sample output file below to see the formatting
General Requirements
No global variables, other than constants
You may use any of these libraries:
iostream
string
iomanip
fstream
cctype
cstdlib
cstring
HINT: Be careful if you change the example input file. If you have trailing whitespace at the end of a text file your program attempts to read you could encounter off by one errors. You SHOULD test your program on multiple input files (all of the required format of course)
Write your source code so that it is readable and well-documented
Part of assessing readability and style will be how well you break your program into appropriate functions. You should have at least one function in this program that takes in a Student structure, or the array of Students, as a parameter
Sample Program Run
Here is one sample program run, on the sample input file linked previously. Note that this is just one example. You can (and should) create your own test cases to test this program more fully. The keyboard/screen interaction is shown first (keyboard input is underlined), then the sample input file and output file contents are shown.
Sample Input File
Output File Contents (after the program run)
Explanation / Answer
Please find the corrected program:
#include<iostream>
#include<fstream>
//#include
//#include
//#include
using namespace std;
struct studt
{
string ln;
string fn;
char crc;
int tg1,tg2,tg3;
};
int main()
{
ifstream ipf;
ofstream opf;
string ip,op;
int ch=0,n,i,rownum, z0;
double average=0.0, crc_avg=0.0;
while(ch!=1)
{
cout<<"please enter the name of the input file";
cin>>ip;
ipf.open(ip.c_str());
if (ipf.fail())
{
cout<<" the given file was incorrect";
cout<<" make sure file exist ";
}
else
{
cout<<" Opened input file";
ch=1;
ipf>>n;
studt s[n];
while(!ipf.eof())
{
for(rownum=0; rownum<n; rownum++)
{
ipf>>s[rownum].ln;
ipf>>s[rownum].fn;
ipf>>s[rownum].crc;
ipf>>s[rownum].tg1;
ipf>>s[rownum].tg2;
ipf>>s[rownum].tg3;
}
}
ipf.close();
ch=0;
while(ch!=1)
{
cout<<"please enter the name of the output file ";
cout<<"file name:";
cin>>op;
opf.open(op.c_str());
if(!opf.fail())
{
cout<<" file";
average=(0.3 * s[rownum].tg1) +(0.3* s[rownum].tg2) +(0.4 * s[rownum].tg3);
crc_avg=crc_avg+average;
z0++;
}
}
}
}
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.