请问哪位大佬能看出问题所在 教教小白
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
three = one + two;
int age1=one+two;
System.out.println("three=one+two==>"+age1);
three += one;
int age2=three+=one;
System.out.println("three+=one==>"+age2);
three -= one;
int age3=three-=one;
System.out.println("three-=one==>"+age3);
three *= one;
int age4=three*=one;
System.out.println("three*=one==>"+age4);
three /= one;
int age5=three/=one;
System.out.println("three/=one==>"+age5);
three %= one;
int age6=three%=one;
System.out.println("three%=one==>"+age6);
}
}