今年的第几天?
Posted hequnwang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了今年的第几天?相关的知识,希望对你有一定的参考价值。
题目描述
输入年、月、日,计算该天是本年的第几天。
输入描述:
包括三个整数年(1<=Y<=3000)、月(1<=M<=12)、日(1<=D<=31)。
输出描述:
输入可能有多组测试数据,对于每一组测试数据, 输出一个整数,代表Input中的年、月、日对应本年的第几天。
示例1
输出
复制263 122
代码:
#include <iostream> #include <string> using namespace std; int main() { int year, month, day; int days[12] = { 31, 30, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; while (cin >> year >> month >> day) { //判断二月有多少天 if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) { days[1] = 29; } else { days[1] = 28; } int out=0; for (int i = 1; i < month;i++) { out += days[i-1]; } cout << (out + day) << endl; } return 0; }
以上是关于今年的第几天?的主要内容,如果未能解决你的问题,请参考以下文章