public class HelloWorld{
public static void main(String[] args) {
String city ="江苏徐州";
System.out.println("我的家乡在:"+city);
}
}
public static void main(String[] args) {
String city ="江苏徐州";
System.out.println("我的家乡在:"+city);
}
}
2022-05-02
最新回答 / 天之蓝2661257
你电脑操作系统是多少位的?32bit或者64bit,如果是32bit的操作系统你得再甲骨文官网下载32bit的jdk8,若是64bit的操作系统,你从官网下载64bit的jdk8,32还是64bit你回到电脑桌面鼠标右键打开计算机或此电脑的图标,寻找系统是多少位的信息。 另一种想法:你查到了61003的对应中文信息,那也可以解决问题。
2022-04-29
String hobby="慕课网";
System.out.println(hobby);
hobby="www.imooc.com";
System.out.println(hobby);
System.out.println(hobby);
hobby="www.imooc.com";
System.out.println(hobby);
2022-04-27