用C#编写一个控制台程序,每过一秒便打印出一个字
3个回答
2013-10-26
展开全部
我来个NB点的如果你CPU是3.0的话,num=3;2.0的话num=2int num=3;while(true){for(int count=0;count=10;count++){�0�2 �0�2 �0�2for(int i=0;i<int.maxvalue;i++)�0�2 �0�2 {�0�2 �0�2 �0�2 �0�2 for(int i=0;i<int.maxvalue;i++){//什么也不做,嘿嘿}�0�2 �0�2 }}Console.write("卡出来的的字");}
2013-10-26
展开全部
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" );
}
}
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" );
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2018-04-12
展开全部
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);
}
}
}
来个简便一点的
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询