主题:高手来看一个C#程序
我编写了一个C#的程序如下:
class Exercise
{
public static void Main()
{
int x=0;
for(x=1;x<=10;x++)
{
System.Console.Write("{0:03} ",x);
}
}
}
请问如何修改可以让它的输出结果为:
001 002 003 004 005 006 007 008 009 010
高手请做答,谢谢![em4]
class Exercise
{
public static void Main()
{
int x=0;
for(x=1;x<=10;x++)
{
System.Console.Write("{0:03} ",x);
}
}
}
请问如何修改可以让它的输出结果为:
001 002 003 004 005 006 007 008 009 010
高手请做答,谢谢![em4]