- 论坛徽章:
- 0
|
#include <iostream.h>
void main()
{
int year,manth;
cout<<"请输入一个年份:";
cin>>year;
cout<<"请输入月份:";
cin>>manth;
switch(manth)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12: cout<<"This manth hava 31 days."<<endl;break;
case 4:
case 6:
case 9:
case 11: cout<<"This manth have 30 days."<<endl;break;
default: cout<<endl;
}
if(manth=2)
{
if(year%4==0&&year%100!=0)
{
cout<<"This year is leap year."<<endl;
cout<<"This manth have 29 days."<<endl;
}
else
{
cout<<"This year isn't leap year."<<endl;
cout<<"This manth hava 28 days."<<endl;
}
}
cout<<endl;
}
不管输入那个月份
最后输出都会含有:
This year is leap year
This manth have 29 days
或
This year isn't leap year
This manth hava 28 days
那位大侠能帮我看看是什么原因
谢谢 |
|