求c#控制台应用程序例题答案 1、 创建一控制台应用程序,用来判断从用户输入年份开始到2500年的闰年并打印

 我来答
匿名用户
2011-03-02
展开全部
using System;
using System.Collections.Generic;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int input = 0;
const int max = 2500;
List<int> result = new List<int>();
Console.WriteLine("输入一个年份");
while (!int.TryParse(Console.ReadLine(), out input))
{
Console.WriteLine("输入错误");
}
for (int index = input; index <= max; ++index)
{
if (index % 100 != 0 && index % 4 == 0 || index % 400 == 0)
{
result.Add(index);
}
}
input = 0;
foreach (int output in result)
{
Console.Write(output + "\t");
if (++input % 6 == 0) Console.WriteLine();
}
Console.WriteLine();
Console.WriteLine("按任意键退出");
Console.ReadKey();
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
elvdhdi
2011-03-05 · TA获得超过267个赞
知道小有建树答主
回答量:195
采纳率:0%
帮助的人:125万
展开全部
int y = 0;
for (int i = 1; i <= 1000; i++)
{
if (i % 7 == 0)
{
y++;

Console.WriteLine(y + " " + i);

max += i;

if (y % 5 == 0)
{
Console.WriteLine("count every five: " + max);
max = 0;
}
}

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式