这哪里错了?请高人指点
int three=one+two; int three+=one; int three-=one; int three*=one; int three/one; int three%=one; System.out.println(three); } }
int three=one+two; int three+=one; int three-=one; int three*=one; int three/one; int three%=one; System.out.println(three); } }
2018-05-07
int one = 10 ;
int two = 20;
int three = 0 ;
int as=one+two;
int sw=two+two;
int dw=two+two-one;
int ad=(one+two)*one;
int asd=(ad/30)+two;
int sc=(one+two)%(one+two);
System.out.println("three=one+two==>"+as);
System.out.println("three+=one==>"+sw);
System.out.println("three-=one==>"+dw);
System.out.println("three*=one==>"+ad);
System.out.println("three/=one==>"+asd);
System.out.println("three%=one==>"+sc);
举报