1. 程式人生 > >c判斷閏年

c判斷閏年

ret return image std pre () 測試 分享 out

編寫程序判斷輸入的年份是閏年還是平年。

閏年的判斷準則是:1.能被4整除且不能被100整除的為閏年,2.或者是能被400整除。

代碼如下:

 1 //判斷閏年
 2 #include<iostream>
 3 using namespace std;
 4 
 5 int main()
 6 {
 7     int year;
 8     cout << "輸入年份" << endl;    //輸入需判斷的年份
 9     cin >> year;
10     if (year % 4 == 0 && year % 100 != 0 || year % 400
== 0) 11 //判斷條件 12 { 13 cout << "輸入的年份是閏年!" << endl; 14 } 15 else 16 { 17 cout << "輸入的年份是平年!" << endl; 18 } 19 return 0; 20 }

測試結果

技術分享

end。

c判斷閏年