/in/foo.cc:5:31: error: 'month' has not been declared
bool isZuiHouYiTian (int year,month,day){
^~~~~
/in/foo.cc:5:37: error: 'day' has not been declared
bool isZuiHouYiTian (int year,month,day){
^~~
/in/foo.cc: In function 'bool isZuiHouYiTian(int, int, int)':
/in/foo.cc:6:5: error: 'month' was not declared in this scope
if(month==2){
^~~~~
/in/foo.cc:7:15: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
if(year%4==0&&year%100!=0||year%100==0&&year%400==0){
~~~~~~~~~^~~~~~~~~~~~~
/in/foo.cc:8:7: error: 'day' was not declared in this scope
if(day==29)return true;
^~~
/in/foo.cc:13:9: error: 'day' was not declared in this scope
if(day==31)return true;
^~~
/in/foo.cc:18:9: error: 'day' was not declared in this scope
if(day==31)return true;
^~~
/in/foo.cc:27:11: error: a function-definition is not allowed here before '{' token
int main(){
^
/in/foo.cc:35:1: error: expected '}' at end of input
}
^
/in/foo.cc:35:1: error: expected '}' at end of input
/in/foo.cc:35:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^