课程
/后端开发
/Java
/Java入门第一季(IDEA工具)升级版
int one = 10 ;
int two = 20 ;
int three = 0 ;其中这个three的值不是0吗,怎么能three=one+two?
2015-12-29
源自:Java入门第一季(IDEA工具)升级版 3-3
正在回答
one two three 都是变量,而=只是一个赋值运算符,只是暂时的给他们一个值,后面可以随意变化的,在编程语言中==才是不变的量。
lionbuild 提问者
==与=不要混淆,判断是否相等是==
举报
0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始
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/
2 回答为什么 three = one + two;不能int three = one + two 吗
4 回答three=one+two那些不用加int吗?
3 回答为什么不在three=one+two;前面添加int