最新回答 / 慕先生2348631
public class HelloWorld{ public static void main(String[] args) { int one = 10 ; int two = 20 ; int three=0; three=one+two; System.out.println("three=one+two==>"+three); three+=one; ((SYstm)).out.println(...
2022-11-24
最新回答 / 比奇堡大亨
老师,我想问一下IntelliJ IDEA Community Edition 这款软件可以切换成中文模式吗?我这是下载的2023版本的软件有些功能排放的位置与授课教程中演示的大相同,每次都要进行翻译搜索😥
2022-11-19
最新回答 / 慕函数7131464
17行count已经被定义过,你就不能再用了,改成i好一些public class HelloWorld { public static void main(String[] args) { // 变量保存成绩 int score = 53; // 变量保存加分次数 int count = 0; //打印输出加分前成绩 System.out.pri...
2022-10-22
public class HelloWorld{
pulic static void main(String[] args){
System.out.println("HelloWorld");
}
}
pulic static void main(String[] args){
System.out.println("HelloWorld");
}
}
2022-10-13