input/code.cpp: In function 'int main()':
input/code.cpp:9:2: error: expected ';' before 'if'
if(n==1)
^
input/code.cpp:11:2: error: 'else' without a previous 'if'
else if(n==2)
^
input/code.cpp:12:8: error: expected ';' before numeric constant
cout 11;
^
input/code.cpp:12:10: warning: statement has no effect [-Wunused-value]
cout 11;
^
input/code.cpp:14:8: error: expected ';' before numeric constant
cout 10;
^
input/code.cpp:14:10: warning: statement has no effect [-Wunused-value]
cout 10;
^
input/code.cpp:16:8: error: expected ';' before numeric constant
cout 1111;
^
input/code.cpp:16:12: warning: statement has no effect [-Wunused-value]
cout 1111;
^
input/code.cpp:18:8: error: expected ';' before numeric constant
cout 110;
^
input/code.cpp:18:11: warning: statement has no effect [-Wunused-value]
cout 110;
^
input/code.cpp:20:8: error: expected ';' before numeric constant
cou...