运行 ID: 128697

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:6:10: error: ‘getchar’ was not declared in this scope
 while((c=getchar())!='\n')
          ^~~~~~~
Main.cc:6:10: note: suggested alternative: ‘char’
 while((c=getchar())!='\n')
          ^~~~~~~
          char
Main.cc:11:10: warning: suggest parentheses around ‘&&’ within ‘||’ [-Wparentheses]
 if(c>'Z' && c<='Z'+4 || c>'z')
    ~~~~~~^~~~~~~~~~~
Main.cc:13:3: error: ‘cout’ was not declared in this scope
 } cout<