qq_l_442
2017-06-03 18:46
public static void main(String[] args) {
String name="tom";
String love="imooc";
String hobyl="lol";
System.out.println("我里面的变量有:"+ tom + "还有"+ imooc +"还有"+lol);
}
tom imooc 和 lol 这不是变量 而是字符串 要加双引号
所以 最后输出可以 System.out.println("我里面的变量有:"+ "tom" + "还有"+ "imooc" +"还有"+"lol");
也可以 System.out.println("我里面的变量有:"+name + "还有"+ love +"还有"+love);
不能运行,运行就报错
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题