为什么不对呢?

来源:3-3 Java中的赋值运算符

阿秋lyq

2015-11-08 21:27

public class HelloWorld{
    public static void main(String[] args) {
	    int one = 10 ;
        int two = 20 ;
        int three = 0 ;
        three=one+two;
         System.out.println("three = one + two==>"+three);
         threee+=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);
        
        
      
    
	}
}


写回答 关注

2回答

  • 阿秋lyq
    2015-11-09 22:01:00

    好的,谢谢

  • 悟道参禅
    2015-11-09 16:00:42

    第八行拼写错误

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题