码迷,mamicode.com
首页 > 编程语言 > 详细

【C++】2.判断闰年

时间:2018-03-04 20:06:12      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:char   mes   std   gpo   操作   namespace   ons   turn   creat   

//
//  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.判断闰年

标签:char   mes   std   gpo   操作   namespace   ons   turn   creat   

原文地址:https://www.cnblogs.com/tp0829/p/8505505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!