摘要: 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 有容乃大 阅读(308) 评论(0) 推荐(0) 编辑