package helloworld;
public class lianxi{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
int a,b,c,d,e,f;
a = one + two ;
b = three += one ;
c = three -= one ;
d = three *= one ;
e = three /= one;
f = three %= 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);
}
}