![]()
string strName = "kakaxi";
string strVillage = "huoyingcun";
int iAge = 20;
string strEmail = "1287195315@qq.com";
decimal deSalary = 2000m;
Console.WriteLine("大家好,我叫"+strName+",我今年"+iAge+"岁了, 我住在"+strVillage+",我的邮箱是"+strEmail+", 我的工资有足足"+deSalary+"元;");
Console.ReadKey();
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();
static void Main(string[] args)
{
string strName = "zhangsan";
char chGender = '男';
int intAge = 10;
string strTel = "13486484826";
Console.WriteLine("你好, 我叫{0}, 我是{1}生, 我今年{2}岁了,我的电话号码是{3};", strName, chGender, intAge, strTel);
Console.ReadKey();
}
static void Main(string[] args)
{
string strName = "zhangsan";
char chGender = '男';
int intAge = 10;
string strTel = "13486484826";
Console.WriteLine("你好, 我叫"+strName+", 我是"+chGender+"生, 我今年"+intAge+"岁了,我的电话号码是"+strTel+";");
Console.ReadKey();
}