Main.cc:1:1: error: ‘include’ does not name a type; did you mean ‘__has_include’? include ^~~~~~~ __has_include Main.cc: In function ‘int main()’: Main.cc:4:31: error: ‘getchar’ was not declared in this scope int main() { char c; while((c=getchar())!='\n') { ^~~~~~~ Main.cc:4:31: note: suggested alternative: ‘char’ int main() { char c; while((c=getchar())!='\n') { ^~~~~~~ char Main.cc:12:10: warning: suggest parentheses around ‘&&’ within ‘||’ [-Wparentheses] if(c>'Z' && c<='Z'+4 || c>'z') ~~~~~~^~~~~~~~~~~ Main.cc:16:3: error: ‘cout’ was not declared in this scope } cout<