licxingcat
2015-01-26 22:14
为什么不是int three=one+two ?
int one = 1;
int two = 2;
int three;
three = one + two;
或者
int one = 1;
int two = 2;
int three = one + two;
这个是怎么输出的,求大神指导,理解不了,跪求
原来如此
one,two,three已经定义过了,不能重复定义
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题