HELP!!! " Character escape sequence "


}
Last edited on

Place your tabs inside your quotes. This will get rid of the errors you inquired about, but you still have formatting issues.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>
using namespace std;
int main()
{
char response;
cout << " Mr. Moreno's schedual ";
cout << " Period number \t" <<" Subject \t" <<" Teacher \t" <<" Room number ";
cout << " 1 \t" <<" Advanced Computers \t" <<" Mr. Moreno \t" <<" number E4 ";
cout << " 2 \t" <<" Advanced Computers \t" <<" Mr. Moreno \t" <<" number E4 ";
cout << " 3 \t" <<" Coding and Gaming \t" <<" Mr. Moreno \t" <<" number E4 ";
cout << " 4 \t" <<" Multimedia 1 and 2 \t" <<" Mr. Moreno \t" <<" number E4";
cout << " 5 \t" <<" Prep \t" <<"Mr. Moreno \t" <<" number E4";
cout << " 6 \t" <<" Coding and Gaming \t" <<" Mr. Moreno \t" <<"number E4";
cin >> response;
return 0;

}
Topic archived. No new replies allowed.