C#控制台程序如何将输出信息锁定在固定位置

如题所述

是不是这个意思
using System;
using System.Collections.Generic;
using System.Text;

namespace SolveQuestionConsole
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 20; i++)
{
Console.WriteLine(i * i * i);
System.Threading.Thread.Sleep(300);
Console.Clear();
}
Console.ReadKey();
}
}
}
温馨提示:内容为网友见解,仅供参考
第1个回答  2009-07-14
三个字:没有办法
第2个回答  2009-07-14
楼上的那是四个字。
我的答案五字:绝对不可能
第3个回答  2009-07-14
锁定在固定位置 是什么意思呢
相似回答