作业帮 > 综合 > 作业

else if 找不到对应的 if

来源:学生作业帮 编辑:拍题作业网作业帮 分类:综合作业 时间:2024/04/29 20:23:29
else if 找不到对应的 if
#include
int month_days(int year,int month)
{
int x=31;
if(month==2)
{
if((year%100==0&&year%400==0)||(year%100!=0&&year%4==0))
x=29;
else x=28;
};
else if(month==4||month==6||month==9||month==11)
x=30;
else x=31;
return x;
}
Compiling...
rn.cpp
F:\rn.cpp(11) :error C2181:illegal else without matching if
Error executing cl.exe.
if(month==2)
{
if((year%100==0&&year%400==0)||(year%100!=0&&year%4==0))
x=29;
else x=28;
};
多了个分号 在我复制的最后一行