public class imooc33 {
public static void main(String[] args){
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);
}
}
习惯受伤
相关分类