03 2011 档案

摘要: class MainClass{ static void Main() { double x; x = 1.5; Console.WriteLine(++x); Console.WriteLine(x); x = 1.5; Console.WriteLine(x++); Console.WriteLine(x); }}结果值为:2.52.51.52.5阅读全文
posted @ 2011-03-10 14:34 有容乃大 阅读(103) | 评论 (0) 编辑