在屏幕上输出:(自己名字)的手机是philips型号:998;价格:1500元;重量:0.3kg。
public static void Main() { string sj = "philips", xh = "998"; double jg = 1500, zl = 0.3; Console.WriteLine("我的手机型号是{0},型号是{1},价格是{2}元,重量是{3}kg", sj, xh, jg, zl); }