JAVA嵌套用于循环初学者

时间:2016-03-17 11:20:28

标签: java

public class MultiplicationTable {

    public static void main(String[] args) {

        int E = 2;

        for(int i =1;i<=9;i++){
            for(int j=0; j<1 ; j++){
                System.out.print("2xi" E * i);//problem!!!
            }
            System.out.println();
        }


    }

我不知道为什么我会收到错误...

2 个答案:

答案 0 :(得分:1)

正如评论所说改变:

System.out.print("2xi" E * i);//problem!!!

System.out.print("2xi " + E * i);

答案 1 :(得分:1)

使用连接运算符&#39; +&#39;组合字符串和结果:

public class MultiplicationTable {

    public static void main(String[] args) {

        int E = 2;

        for(int i =1;i<=9;i++){
            for(int j=0; j<1 ; j++){
                System.out.print("2xi" + (E * i));//problem!!!
            }
            System.out.println();
        }


    }