1. 程式人生 > >【C++】2.判斷閏年

【C++】2.判斷閏年

using -m esp cin man int out serve std

//
//  main.cpp
//  2_2
//
//  Created by T.P on 2018/3/4.
//  Copyright ? 2018年 T.P. All rights reserved.
//

//判斷閏年
//:閏年可以被4整除而不能被100整除,或者能被400整除。

//表達式((year%4==0&&year%100!=0)||(year%400==0))

#include <iostream>
#include <iomanip>      //包含IO類庫操作符
using namespace std;    //沒寫 using namespace std; 用 std::cout
                        //寫了 using namespace std; 用 cout 就可以了。

int main(int argc, const char * argv[]) {
    // insert code here...
    //std::cout << "Hello, World!\n";
    int year;
    bool isLeapYear;
    
    cout<<"Enter the year:";
    cin>>year;
    isLeapYear=((year%4==0&&year%100!=0)||(year%400==0));
    
    if(isLeapYear)
        cout<<year<<"is a leap year"<<endl;
    else
        cout<<year<<" is not a leap year"<<endl;
    
    
    
    return 0;
}

【C++】2.判斷閏年