public class HelloWorld{
public static void main(String[] args) {
String city="我的家乡在";
System.out.println("我的家乡在:"+city);
}
}
public class HelloWorld{
public static void main(String[] args) {
String city = "这里写家乡名";
System.out.println("我到家乡在" + city);
// 结果是-----我的家乡在这里写家乡名,就是这么一个意思
}
}
把我的家乡改成自己的家乡名就ok