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

运算成功了 但是倒数第二个数值跟题目的答案不一样是怎么回事 我这个方法对不对

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/=one;
        int x =two%=one;
       
       
        System.out.println("three=one+two==>"+a);
        System.out.println("three+=one==>"+b);
        System.out.println("three-=one==>"+c);
        System.out.println("three*=one==>"+d);
        System.out.println("three/=one==>"+f);
        System.out.println("three%=one==>"+x);
       
       

正在回答

3 回答

 int one = 10 ;        int two = 20 ;        int three = 0 ;        int a = one+two;        int b = a+=one;        int c = a-=one;        int d = a*=one;        int e = a/=one;        int f = a%=one;        System.out.println("three = one + two ==> "+a);        System.out.println("three += one ==> "+b);        System.out.println("three -= one ==> "+c);        System.out.println("three *= one ==> "+d);        System.out.println("three /= one ==> "+e);        System.out.println("three %= one ==> "+f);


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

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

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

20/10=2  答案是 (two+one)*one/=one   虽然看起来没什么意义 但是是为了让你熟练掌握这个赋值运算符的

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

举报

0/150
提交
取消

运算成功了 但是倒数第二个数值跟题目的答案不一样是怎么回事 我这个方法对不对

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