无法运行大佬提点下
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);