课程
/后端开发
/Java
/Java入门第一季(IDEA工具)升级版
为什么不是int three=one+two ?
2015-01-26
源自:Java入门第一季(IDEA工具)升级版 3-3
正在回答
int one = 1;
int two = 2;
int three;
three = one + two;
或者
int three = one + two;
licxingcat 提问者
这个是怎么输出的,求大神指导,理解不了,跪求
原来如此
one,two,three已经定义过了,不能重复定义
举报
0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始
2 回答为什么 three = one + two;不能int three = one + two 吗
3 回答int one = 10 ; int two = 20 ; int three = 0 ;为什么three=one+two
3 回答 int one = 10 ; int two = 20 ; int three = 0; three=one+two; three=three/one;=0 three/=one;=30我始终不明白three/=one为什么等于30
2 回答public class HelloWorld{ public static void main(String[] args) { int one = 10 ; int two = 20 ; int three = 0 ; int a =one+two; int b =two*2; int c =(two*2)-one; int d =two*=one; int f =two/
3 回答为什么不在three=one+two;前面添加int