怎么运行不出来啊

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

weixin_慕斯7292930WD

2020-01-23 09:27

public class HelloWorld{

    public static void main(String[] args) {

    int one = 10 ;

        int two = 20 ;

        int three = 0 ;

        three=one+two;

        int a=three+=one;

        int b=three-=one;

        int c=three*=one;

        int d=three/=one;

        int e=three%=one;

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

        System.out.printlin("three+=one"==>+a);

        System.out.printlin("three-=one"==>+b);

        System.out.printlin("three*=one"==>+c);

        System.out.printlin("three/=one"==>+d);

        System.out.printlin("three%=one"==>+e);


写回答 关注

3回答

  • QW_KK
    2020-01-23 10:17:50
    已采纳

    一共两个问题,给你用单行注释标记了

    public class HelloWorld{
        public static void main(String[] args) {
            int one = 10 ;
            int two = 20 ;
            int three = 0 ; 
            three=one+two;
            int a=three+=one;
            int b=three-=one;
            int c=three*=one;
            int d=three/=one;
            int e=three%=one; 
            //你的所有System.out.println都错写为System.out.printlin了
            System.out.println("three=one+two ==>"+three);    //题目里  ==>  是要打印的内容
            System.out.println("three+=one ==>"+a);
            System.out.println("three-=one ==>"+b);
            System.out.println("three*=one ==>"+c);
            System.out.println("three/=one ==>"+d);
            System.out.println("three%=one ==>"+e);
            }
    }
  • 我的未来道路
    2020-02-06 15:44:18

    我的是这样

    public class HelloWorld{

        public static void main(String[] args) {

        int one = 10 ;

            int two = 20 ;

            int three = 0 ;

             int a=three=one+two;

             int b=three+=one;

             int c=three-=one;

             int d=three*=one;

             int e=three/=one;

             int f=three%=one;

             

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

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

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

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

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

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


  • qq_慕粉2454340
    2020-01-30 15:22:16

    int three = 0 ; 这个要去掉

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

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

1165172 学习 · 17581 问题

查看课程

相似问题