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

我标记的地方报错了,麻烦看下为什么错了。谢谢

package COM.HelloWorld;

public class Jiafa {
 public static void main(String[] args){
    int one = 10 ;
    int two = 20 ;
    int three = 0 ;
    intthree=one+two;   
    int three1=three+=one;
    int three2=three1-=one;
    int three3=three2*=one;
    int three4=three3/=one;
    int three5=three4%=one;
    System.out.println(three);
    System.out.println(three1);
    System.out.println(three2);
    System.out.println(three3);
    System.out.println(three4);
    System.out.println(three5);
   
   
   
   
   

}
}


正在回答

3 回答

前面用int定义了three后面就不需要重新定义了,而且后面定义的时候中间还没有空格键

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

大00峰 提问者

非常感谢!
2016-11-19 回复 有任何疑惑可以回复我~
#2

qq_变好的坏人_04336920 回复 大00峰 提问者

没事的
2016-11-19 回复 有任何疑惑可以回复我~
#3

qq_北色_0

我的有空格键也错的
2016-11-19 回复 有任何疑惑可以回复我~
#4

慕粉1355261953

为什么不能一起输出啊?
2016-12-19 回复 有任何疑惑可以回复我~
查看1条回复

int three = one+ two;   

System.out.println(three);

three += one;

System.out.println(three);

three -=one;

System.out.println(three);

three *= one;

System.out.println(three);

three /= one;

System.out.println(three);

three %= one;

System.out.println(three);

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

大00峰 提问者

我这个写法也可以的 运行成功 谢谢
2016-11-19 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我标记的地方报错了,麻烦看下为什么错了。谢谢

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