编一程序,将2000年到3000年中的所有润年年份输出并统计出润年的个数,要求每 1
答案:2 悬赏:0 手机版
解决时间 2021-12-02 00:45
- 提问者网友:且恨且铭记
- 2021-12-01 19:56
编一程序,将2000年到3000年中的所有润年年份输出并统计出润年的个数,要求每 1
最佳答案
- 五星知识达人网友:空山清雨
- 2021-12-01 20:47
int main()
{
int sum = 0;
for (int i = 2000; i <= 3000; i += 4) {
if ((sum % 100 == 0) && (sum % 400 > 0))continue;
sum++;
printf("%4d年使闰年
", i);
}
printf("一共有%d年是闰年", sum);
system("pause");
return 0;
}
{
int sum = 0;
for (int i = 2000; i <= 3000; i += 4) {
if ((sum % 100 == 0) && (sum % 400 > 0))continue;
sum++;
printf("%4d年使闰年
", i);
}
printf("一共有%d年是闰年", sum);
system("pause");
return 0;
}
全部回答
- 1楼网友:野慌
- 2021-12-01 22:12
<%
Dim i, tmpInt, yCount
tmpInt = 0: yCount = 0
For i = 2000 to 3000
If (i Mod 4 = 0 And i Mod 100 <> 0) Or (i Mod 400 = 0) Then
If tmpInt = 10 Then tmpInt = 1: Response.Write("
Dim i, tmpInt, yCount
tmpInt = 0: yCount = 0
For i = 2000 to 3000
If (i Mod 4 = 0 And i Mod 100 <> 0) Or (i Mod 400 = 0) Then
If tmpInt = 10 Then tmpInt = 1: Response.Write("
" & CStr(i) & " ") Else tmpInt = tmpInt + 1: Response.Write(CStr(i) & " ")
yCount = yCount + 1
End If
Next
Response.Write("
Total:" & yCount)
%>
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯