Problem helloworld
User kvankok
Submission Time 2023-08-09 21:23:17
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp: In function ‘int main()’:
helloworld.cpp:22:8: error: redeclaration of ‘std::string e’
22 | string e = "e";
| ^
helloworld.cpp:8:8: note: ‘std::string e’ previously declared here
8 | string e;
| ^
helloworld.cpp:24:8: error: redeclaration of ‘std::string l’
24 | string l = "l";
| ^
helloworld.cpp:10:8: note: ‘std::string l’ previously declared here
10 | string l;
| ^
helloworld.cpp:26:8: error: redeclaration of ‘std::string o’
26 | string o = "o";
| ^
helloworld.cpp:12:8: note: ‘std::string o’ previously declared here
12 | string o;
| ^
helloworld.cpp:28:8: error: redeclaration of ‘std::string w’
28 | string w = "W";
| ^
helloworld.cpp:14:8: note: ‘std::string w’ previously declared here
14 | string w;
| ^
helloworld.cpp:30:8: error: redeclaration of ‘std::string r’