第九周上机实践------判断哪年哪月有几天

时间:2021-11-23 08:06:38
/*
*程序的版权和版本声明部分:
*Copyright(c)2013,烟台大学计算机学院学生
*All rights reserved.
*文件名称:判断哪年哪月有几天
*作者:杨飞
*完成日期:2013年10  月 26 日
*版本号:v1.0
*对任务及求解方法的描述部分:
*问题描述:判断哪年哪月有几天
我的程序:


#include <iostream>
using namespace std;
int main()
{
int year,month;
cout<<"年,月"<<endl;
cin>>year>>month;
if(month==2)
{
if(year%4==0&&year%100!=0||year%400==0)
cout<<"29天"<<endl;
           else
  cout<<"28天"<<endl;
}



else
switch(month)
{
case 1:
case 3:
   case 5:
   case 7:
case 8:
   case 10:
case 12:cout<<"31天"<<endl;break;
default:cout<<"30天"<<endl;break;
}


    return 0;
}

运行结果:第九周上机实践------判断哪年哪月有几天







第九周上机实践------判断哪年哪月有几天


心得体会:努力就有收获