为什么不是int three=one+two ?
int one = 1;
int two = 2;
int three;
three = one + two;
或者
int three = one + two;
这个是怎么输出的,求大神指导,理解不了,跪求
原来如此
one,two,three已经定义过了,不能重复定义