0_0_24103299_6282.cpp:1:1: error: 'string' does not name a type
string Add(string a, string b)
^
0_0_24103299_6282.cpp: In function 'int main()':
0_0_24103299_6282.cpp:27:2: error: 'string' was not declared in this scope
string a, b;
^
0_0_24103299_6282.cpp:28:2: error: 'cin' was not declared in this scope
cin >> n;
^
0_0_24103299_6282.cpp:32:10: error: 'a' was not declared in this scope
cin >> a >> b;
^
0_0_24103299_6282.cpp:32:15: error: 'b' was not declared in this scope
cin >> a >> b;
^
0_0_24103299_6282.cpp:33:3: error: 'cout' was not declared in this scope
cout << "Case " << i << ':' << endl;
^
0_0_24103299_6282.cpp:33:34: error: 'endl' was not declared in this scope
cout << "Case " << i << ':' << endl;
^
0_0_24103299_6282.cpp:34:39: error: 'Add' was not declared in this scope
cout <<a<<" + "<<b<<" = "<< Add(a, b)<<endl<<endl;
^
0_0_24103299_6282.cpp:36:9: error: 'a' was not declared in this scope
cin >> a >> b;
^
0_0_24103299_6282.cpp:36:14: error: 'b' was not declared in this scope
cin >> a >> b;
^
0_0_24103299_6282.cpp:37:2: error: 'cout' was not declared in this scope
cout << "Case " << n << ':' << endl;
^
0_0_24103299_6282.cpp:37:33: error: 'endl' was not declared in this scope
cout << "Case " << n << ':' << endl;
^
0_0_24103299_6282.cpp:38:46: error: 'Add' was not declared in this scope
cout << a << " + " << b << " = " << Add(a, b);
^
|