为什么不对 总是提示错误

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

qq__2755

2015-11-09 23:45

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

        


写回答 关注

1回答

  • 默子
    2015-11-10 09:44:38
    已采纳

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

    println后面不接=号

    qq__27...

    非常感谢!

    2015-11-10 10:39:02

    共 1 条回复 >

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

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

1165172 学习 · 17581 问题

查看课程

相似问题