首页 新闻 会员 周边
5
回答数

待解决问题 C#中为什么100-200=100?

int a = 100; int b = 200; a = a + b; b = a - b; Console.WriteLine("a="+a+ ";b="+b); Console.ReadLine