没注释的源代码
#include <iostream>
using namespace std;
void Y(int y);
int main()
{
int year;
cout<<"请输入一个年份:";
cin>>year;
Y(year);
return 0;
}
void Y(int y)
{
if(((y%4==0)&&(y%100!=0))||(y%400==0))
cout<<y<<"是闰年";
else
cout<<y<<"不是闰年";
}
没注释的源代码
#include <iostream>
using namespace std;
void Y(int y);
int main()
{
int year;
cout<<"请输入一个年份:";
cin>>year;
Y(year);
return 0;
}
void Y(int y)
{
if(((y%4==0)&&(y%100!=0))||(y%400==0))
cout<<y<<"是闰年";
else
cout<<y<<"不是闰年";
}