CPlusPlusThings/practical_exercises/10_day_practice/day1/是否闰年‘.cpp
Light-City a4d828bb4c update
2020-04-06 00:57:02 +08:00

21 lines
408 B
C++

#include<iostream>
using namespace std;
int main(int argc, char const *argv[])
{
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;
}
system("pause");
return 0;
}