求教three=one+two问题,用的手机没办法知道对错
1.public class helloworld{
2.public stail void main(string[]args){
3.int one=10;
4 int two=20;
5.int three=0;
6.int three1=one+two;
7.system.out.println(“three1:”+three);
8.int three2+=one;
9.int three3-=one;
10.int three4*=one;
11.int three5/=one;
12.int three6%=one;
14.system.out.println(“three2+=one:”+three);
15.system.out.println(“three3-=one:”+three);
16.system.out.println(“three4*=one:”+three);
17.system.out.println(“three5/=one:”+three);
18.system.out.println(“three6%=one:”+three);
19.
20.{
21.{
这样写运算的结果是对是错?