111,128
社区成员
发帖
与我相关
我的任务
分享namespace ConsoleApplication7
{
class Program
{
int a;
static void Main(string[] args)
{
int i;
for(i = 0; i < 5; i++)
{
a += 1;
}
Console.WriteLine("{0}", a);
}
}
}