为了账号安全,请及时绑定邮箱和手机立即绑定

哪里错啦,我无语死了

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);

        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);

        three%=one;

        

        

        System.out.println("three %=one ==>",+three);

        

        

        

        

        

        

        

        

        

        

        

        

        

    

}

}



正在回答

7 回答

将System.out.println("xxx",+xx);改为System.out.println("xxx"+xx);即可。(去掉逗号)

1 回复 有任何疑惑可以回复我~

解决了,上述第二个问题是我重复定义了。谢谢大家

0 回复 有任何疑惑可以回复我~

HelloWorld.java:9: error: variable one is already defined in method main(String[])
       int one = 10 ;
           ^
HelloWorld.java:10: error: variable two is already defined in method main(String[])
int two = 20 ;
   ^
HelloWorld.java:11: error: variable three is already defined in method main(String[])
int three = 0 ;
   ^
3 errors

0 回复 有任何疑惑可以回复我~

不要逗号


0 回复 有任何疑惑可以回复我~

 把打印信息中的逗号去掉,字符创拼接不需要逗号,如下:

		int one = 10 ;
		int two = 20 ;
		int three = 0 ;
		three=one+two;
		System.out.println("three = one +two ==>"+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);
		three%=one;		        		        
		System.out.println("three %=one ==>"+three);


0 回复 有任何疑惑可以回复我~

把println()方法中的逗号去掉

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Java入门第一季(IDEA工具)升级版
  • 参与学习       1165157    人
  • 解答问题       17581    个

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

进入课程

哪里错啦,我无语死了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信