主题:这道简单程序运行要怎样修改
using System;
class Namedwelcome
{
public static void Main(string[] args)
{
Console.WriteLine("hello.,{0}!", args[0]);
Console.WriteLine("Welcome to the c# station Tutorial!");
}
}
这道简单程序运行要怎样修改
class Namedwelcome
{
public static void Main(string[] args)
{
Console.WriteLine("hello.,{0}!", args[0]);
Console.WriteLine("Welcome to the c# station Tutorial!");
}
}
这道简单程序运行要怎样修改