using sc = System.Console;
class MainClass
{
static void Main()
{
// 出力値:What's Your Name?>>
sc.Write("What's Your Name?>>");
// string型のnameを入力
string name = sc.ReadLine();
// 出力値:Hellow,(name)!
sc.WriteLine("Hello," + name + "!");
}
}
0 コメント:
コメントを投稿