运算成功了 但是倒数第二个数值跟题目的答案不一样是怎么回事 我这个方法对不对
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);