using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
? ? ? ? class Program
? ? ? ? {
? ? ? ? ? ? static void Main(string[] args)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? /**
? ? ? ? ? ? ? ? * 請(qǐng)用戶輸入姓名性別年齡
? ? ? ? ? ? ? ? ? * 當(dāng)用戶按下某個(gè)鍵子后在屏幕上顯示
? ? ? ? ? ? ? ? ? * :您好:XX您的年齡是XX是個(gè)X生
? ? ? ? ? ? ? ? ? * */
? ? ? ? ? ? ? ? Console.WriteLine("請(qǐng)用戶輸入姓名,性別,年齡");
? ? ? ? ? ? ? ? string msg = Console.ReadLine();
? ? ? ? ? ? ? ? string sex = Console.ReadLine();
? ? ? ? ? ? ? ? string age = Console.ReadLine();
? ? ? ? ? ? ? ? Console.WriteLine("您好{0},您的年齡{1},是個(gè){2}",msg,sex,age);
? ? ? ? ? ? ? ? Console.ReadLine();
? ? ? ? ? ? ? }
? ? ? ? }
}