[C#]ReadLineメソッド

using System;

class Console03
{
    public static int Main()
    {
        Console.Write(“あなたの名前は “);
        string YourName = Console.ReadLine();
        Console.Write(“あなたの年齢は “);
        string YourAge = Console.ReadLine();
        Console.WriteLine(“あなたの名前は{0}で年齢は{1}歳です”,
            YourName, YourAge);

        return 0;
    }
}

投稿者: chosuke

趣味はゲームやアニメや漫画などです

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です