用C#编写一个控制台程序,每过一秒便打印出一个字
答案:3 悬赏:20 手机版
解决时间 2021-07-19 03:14
- 提问者网友:遮云壑
- 2021-07-18 19:52
用C#编写一个控制台程序,每过一秒便打印出一个字
最佳答案
- 五星知识达人网友:野慌
- 2021-07-18 20:09
class Program
{
public static int a = 1;
static void Main(string[] args)
{
//循环
while(a > 0)
{
Console.Write("字 ");
//线程睡1秒
System.Threading.Thread.Sleep(1000);
}
}
}
来个简便一点的
{
public static int a = 1;
static void Main(string[] args)
{
//循环
while(a > 0)
{
Console.Write("字 ");
//线程睡1秒
System.Threading.Thread.Sleep(1000);
}
}
}
来个简便一点的
全部回答
- 1楼网友:酒醒三更
- 2021-07-18 23:05
我来个NB点的如果你CPU是3.0的话,num=3;2.0的话num=2
int num=3;
while(true)
{
for(int count=0;count=10;count++)
{
for(int i=0;i<int.maxvalue;i++)
{
for(int i=0;i<int.maxvalue;i++){//什么也不做,嘿嘿}
}
}
Console.write("卡出来的的字");
}
- 2楼网友:十鸦
- 2021-07-18 21:41
using System;
using System.Threading;
public class test {
static void Main()
{
Timer t = new Timer( new TimerCallback(tick), null, 0, 1000 );
Console.ReadLine();
}
static void tick( object o )
{
Console.Write( "X" );
}
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯