C#怎么设置while循环每一秒循环一次并统计次数

 我来答
仙戈雅3n
推荐于2016-10-06 · TA获得超过5790个赞
知道大有可为答主
回答量:2398
采纳率:75%
帮助的人:875万
展开全部
static void Main(string[] args)
        {
            int count = 0;
            while (count<10)
            {
                count++;
                System.Threading.Thread.Sleep(1000);  // 让程序休眠一秒
            }
            Console.WriteLine(count);
        }
xiangjuan314
2016-01-15 · TA获得超过3.3万个赞
知道大有可为答主
回答量:2.9万
采纳率:0%
帮助的人:2809万
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace 中断循环
{
class Program
{
static void Main(string[] args)
{
//100以内符合i%7==0 || i%10==7||i/10==7条件的,统计次数一次
int i = 0;
int number=0;
while (i < 100)
{
i++;
if(i%7==0 || i%10==7||i/10==7)
{
number++;
System.Threading.Thread.Sleep(1000); // 让程序休眠一秒
continue;
}
Console.WriteLine("{0}",i);
Console.WriteLine(number);
}
Console.ReadKey();
}
}
}

while中return,continue,break的区别。
return:退出main函数
continue:直接进行下轮循环
break:直接跳出当前循环
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式