Modify the program so that the user can enter as many courses as they want. The final result is a web page that can be displayed in a browser.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
100%

 

Please Remove the error from the below code

using namespace std;
// outputHtmlTitle
// parameters
// This function...
void outputHtmlTitle(ofstream & fout, string title){
fout << "" << endl;
fout << "" << endl;
fout << "" << endl;
fout << "" << endl;
fout << title << endl;
fout << "" << endl;
}
void outputHtmlFooter(ofstream & fout){
fout << "" << endl;
fout << "" << endl;
}
void outputHtmlList(ostream & fout, string first, string second, string third){
fout << "" << endl;
fout << "\t" << first << "" << endl;
fout << "\t" << second << "" << endl;
fout << "\t" << third << "" << endl;
fout << "\t" << endl;
}
void main(int argc, char * *argv){
ofstream htmlFile("myIntro.html");
string title;
cout << "Please enter the title: ";
getline(cin, title);
outputHtmlTitle(htmlFile, title);
string name;
string course1, course2, course3;
cout << "Please enter your name: ";
getline(cin, name);
htmlFile << "
" << "My name is " << name << "" << endl;

cout << "Please enter 3 courses you are taking; one per line" << endl;
getline(cin, course1);
getline(cin, course2);
getline(cin, course3);
htmlFile << "
" << "This semester I am taking: " << "" << endl;

outputHtmlList(htmlFile, course1, course2, course3);
outputHtmlFooter(htmlFile);
}
Question: Modify the program so that the user can enter as many courses as they want. The final result is a web page that can be displayed in a browser.
----------------------------------------------------------------------------------------------------
Somebody already answered this question with the code below, but I am still getting compiler errors as show in the image. Please Help!

Final code
#include
#include

using namespace std;

// outputHtmlTitle
// parameters
// This function...
void outputHtmlTitle(ofstream & fout, string title){
fout << "" << endl;
fout << "" << endl;
fout << "" << endl;
fout << title << endl;
fout << "" << endl;
fout << "" << endl;
}

void outputHtmlFooter(ofstream & fout){
fout << "" << endl;
fout << "" << endl;
}

void outputHtmlList(ostream & fout, string course){
fout << "" << course << "" << endl;
}

int main(int argc, char * *argv){
ofstream htmlFile("d:\\myIntro.html");
string title;

cout << "Please enter the title: ";
getline(cin, title);
outputHtmlTitle(htmlFile, title);

string name;
string course;
char choice=' ';

cout << "Please enter your name: ";
getline(cin, name);

htmlFile << "" << "My name is " << name << ".
" << endl;
htmlFile << "" << "This semester I am taking: " << "" << endl;

htmlFile<";
do{
cout << "Please enter the course you are taking: " << endl;
cin>>course;
outputHtmlList(htmlFile, course);
cout<cin>>choice;
}while(choice=='y');
htmlFile<";
outputHtmlFooter(htmlFile);
return 0;
}

 
Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY