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();
}
}
我不知道为什么我会收到错误...
答案 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();
}
}