【筆試題】輸入年月日,輸出是這一年的第幾天

#include<iostream> using namespace std; bool isLeapYear(int year) { if(year%4==0&&year%100!=0 || year%400==0) { return true; } else { return false; } } int CountDay(int
相關文章
相關標籤/搜索