第三周上机实践项目——项目2-本月有几天?

来源:互联网 发布:美国反倾销数据库 编辑:程序博客网 时间:2024/05/18 02:12
/* *Copyright (c)2016,烟台大学计算机与控制工程学院 *All rights reserved. *文件名称:main.cpp *作    者:郭永恒 *完成日期:2016年3月12日 *版 本 号:v1.0 * *问题描述:输入年份和月份,输出本月有多少天 *输入描述:输入年份和月份 *输出描述:输出本月有多少天 */#include <iostream>using namespace std;int main(){    int days[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31};    int year,month;    cout << "请输入年份和月份:";    cin >> year >> month;    if((year % 400 == 0) || (year % 4 == 0 && year % 100 != 0))        if(month == 2)            cout << "本月" << days[month] + 1 << "天" << endl;        else            cout << "本月" << days[month] << "天" << endl;    else        cout << "本月" << days[month] << "天" << endl;    return 0;}

运行结果:


知识点总结:

复习

0 0
原创粉丝点击