賦值運算子和+號的用法(兩個練習)

CSF践行發表於2024-08-09

            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();

相關文章