包括三個整數年(1<=Y<=3000)、月(1<=M<=12)、日(1<=D<=31)。
輸入可能有多組測試數據,對於每一組測試數據, 輸出一個整數,表明Input中的年、月、日對應本年的第幾天。
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; }