string strName = "kakaxi"; string strVillage = "huoyingcun"; int iAge = 20; string strEmail = "1287195315@qq.com"; decimal deSalary = 2000m; Console.WriteLine("大家好,我叫{0},我今年{1}歲了, 我住在{2},我的郵箱是{3}, 我的工資有足足{4}元;", strName, iAge, strVillage, strEmail, deSalary); ; Console.ReadKey();