给定一个4位数的年份,判断他是否为闰年, 算法描述:
输入年份→y
if y 能被4整除 then
输出“是闰年”
else
if y能被400整除 then
输出“是闰年”
else
输出“不是闰年”
end if
end if
else
输出“不是闰年”
end if
给定一个4位数的年份,判断他是否为闰年, 算法描述:
输入年份→y
if y 能被4整除 then
输出“是闰年”
else
if y能被400整除 then
输出“是闰年”
else
输出“不是闰年”
end if
end if
else
输出“不是闰年”
end if
int nian;//定义变量 年
int x;//定义变量 x 为计数器
cin>>nian;//输入年份
x=nian%4;
if(x=0)
{
cout<<"是闰年";
}else
{
cout<<"不是闰年";
}