如何设置内容与边框的距离以及显示空格
1、上边图中,数字离左边框太近,我想让他们居中,这个代码怎么写?
2、如果这些数字并排,中间空两格,那么空格应该如何写?
static void Main(string[] args)
{
int x;
Console.WriteLine("显示1~10中大于5的数字");
for (x=1; x<=10;x++)
{
if(x<5)
continue; //跳转语句
Console.WriteLine (x);
}
Console.Read();
}
[此贴子已经被作者于2007-9-4 22:24:34编辑过]