- /*西元=民國+1911
- 西元末兩位不為00,且為4的倍數,則該年為閏年
- 西元末兩位為00,則可被400整除者,則該年為閏年,否則為平年*/
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main(void){
-
- int year =1987;
- if (year%100){
- //不能整除
- if (year %4){
- //不能整除
- cout <<"\\--++平年++--//"<<endl;
- }else{
- //整除
- cout <<"\\--++閏年++--//"<<endl;
- }
- }else{
- //整除
- if(year%400){
- //不能整除
- cout <<"*****++平年++*****"<<endl;
-
- }else{
- //整除
- cout <<"\\--++閏年++--//"<<endl;
- }
- }
-
- system("pause");
- return 0;
- }
複製代碼 |