using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 3;i++ )
System.Console.WriteLine("{0}:Hello World!",i);
System.Console.ReadLine();//为了便于查看上面打印三个HelloWorld的结果
}
}
}
说明:该程序为:Windows Console Application
打印三个hello World
Main函数是该项目的启动入口。
在控制台应用程序中默认引用包括:System,System.Data,System.Xml
运行结果如下:
0:Hello World!
1:Hello World!
2:Hello World!
posted on 2009-09-28 21:46
期待明天 阅读(194)
评论(0) 编辑 收藏 所属分类:
CSharp