117k views
0 votes
Each cout statement has a syntax error. Type the first cout statement, and press Run to observe the error message. Fix the error, and run again. Repeat for the second, then third, cout statement. cout << "Num: " << songnum << endl; cout << int songNum << endl; cout << songNum " songs" << endl;

User Ania David
by
7.6k points

1 Answer

2 votes

Answer:

cout << "Num: " << songNum << endl;

cout << songNum << endl;

cout << songNum << " songs" << endl;

Step-by-step explanation:

Since you did not provide the whole code and each statement has an error, it seems the name of the variable is songNum. Depending on these, you can see the corrections below:

cout << "Num: " << songnum << endl; → cout << "Num: " << songNum << endl;

The name of the variable must be written correctly.

- - -

cout << int songNum << endl; → cout << songNum << endl;

Declaration of the variable must be done before printing it.

- - -

cout << songNum " songs" << endl; → cout << songNum << "songs" << endl;

There must be "<<" signs between each part while printing.

User Tmsss
by
7.8k points