int one = 10 ;
int two = 20 ;
int three = 0 ;其中这个three的值不是0吗,怎么能three=one+two?
one two three 都是变量,而=只是一个赋值运算符,只是暂时的给他们一个值,后面可以随意变化的,在编程语言中==才是不变的量。
==与=不要混淆,判断是否相等是==