一个简单的c++程序,输入日期,屏幕显示日期的程序!
程序的要求就是输入一个日期,屏幕上就显示日期。如果输入日期大于应有的日期,比如12月32日就错误,显示错误。每个月如此。...
程序的要求就是 输入一个日期,屏幕上就显示日期。
如果输入日期大于应有的日期,比如12月32日就错误,显示错误。
每个月如此。 展开
如果输入日期大于应有的日期,比如12月32日就错误,显示错误。
每个月如此。 展开
1个回答
展开全部
#include<iostream.h>
bool isLeapYear(int y) //判断年份是否为闰
{
if((y % 4 == 0 && y % 100 != 0)||(y % 400 == 0))
return true;
else return false;
}
void main()
{
int y, m, d;
cout<<"输入日期:"<<endl;
cin>>y>>m>>d;
switch(m)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
{
if(d < 0 || d > 31) cout<<"输入错误!"<<endl;
else cout<<y<<"年"<<m<<"月"<<d<<"日"<<endl;
} break;
case 4:
case 6:
case 9:
case 11:
{
if(d < 0 || d > 30) cout<<"输入错误!"<<endl;
else cout<<y<<"年"<<m<<"月"<<d<<"日"<<endl;
} break;
case 2:
{
if(isLeapYear(y))
{
if(d < 0 || d > 29) cout<<"输入错误!"<<endl;
else cout<<y<<"年"<<m<<"月"<<d<<"日"<<endl;
}
else
{
if(d < 0 || d > 28) cout<<"输入错误!"<<endl;
else cout<<y<<"年"<<m<<"月"<<d<<"日"<<endl;
}
}break;
default:
cout<<"输入错误!"<<endl;
}
}
bool isLeapYear(int y) //判断年份是否为闰
{
if((y % 4 == 0 && y % 100 != 0)||(y % 400 == 0))
return true;
else return false;
}
void main()
{
int y, m, d;
cout<<"输入日期:"<<endl;
cin>>y>>m>>d;
switch(m)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
{
if(d < 0 || d > 31) cout<<"输入错误!"<<endl;
else cout<<y<<"年"<<m<<"月"<<d<<"日"<<endl;
} break;
case 4:
case 6:
case 9:
case 11:
{
if(d < 0 || d > 30) cout<<"输入错误!"<<endl;
else cout<<y<<"年"<<m<<"月"<<d<<"日"<<endl;
} break;
case 2:
{
if(isLeapYear(y))
{
if(d < 0 || d > 29) cout<<"输入错误!"<<endl;
else cout<<y<<"年"<<m<<"月"<<d<<"日"<<endl;
}
else
{
if(d < 0 || d > 28) cout<<"输入错误!"<<endl;
else cout<<y<<"年"<<m<<"月"<<d<<"日"<<endl;
}
}break;
default:
cout<<"输入错误!"<<endl;
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询