最赞回答 / 清栀12138
public class HelloWorld{ public static void main(String[] args) { int one = 10 ; int two = 20 ; int three = 0 ; three = one + two; //three = 10+20,所以three是30; System.out.println("three = one + two ==> " + three); ...
2020-06-23
最新回答 / 徐世民
import java.util.Arrays;public class HelloWorld { //完成 main 方法 public static void main(String[] args) { int[]scores={89,-23,64,91,119,52,73}; System.out.println("考试成绩的前三名是:"); HelloWorld hello=new HelloWorld(); ...
2020-06-15