为了账号安全,请及时绑定邮箱和手机立即绑定

这边的运算为什么不用前面加int?

public class HelloWorld{
    public static void main(String[] args) {
	    int one = 10 ;
        int two = 20 ;
        int three = 0 ;
        three = one + two;
        System.out.println("three = one + two ==>"+three);
        three += one;
        System.out.println("three += one ==>"+three);
        three -= one;
        System.out.println("three -= one ==>"+three);
        three *= one;
        System.out.println("three *= one ==>"+three);
        three /= one;
        System.out.println("three /= one ==>"+three);
        three %= one;
        System.out.println("three %= one ==>"+three);
	}
}

这边的运算为什么不用前面加int?

正在回答

1 回答

因为你前面已经定义过了,所以后面不需要再用int定义了

1 回复 有任何疑惑可以回复我~
#1

想在西雅图买房的全栈狗 提问者

谢谢!
2016-04-20 回复 有任何疑惑可以回复我~
#2

是猫会喵 回复 想在西雅图买房的全栈狗 提问者

但是后面如果加了int又会是错的,为什么啊?
2016-04-26 回复 有任何疑惑可以回复我~
#3

弑念灬冰炎 回复 是猫会喵

变量不能声明2次
2016-06-12 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

这边的运算为什么不用前面加int?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信