最新回答 / 大师傅姑爷
http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html,下载的时候选择window x86,X86就代表是32位系统,X64是64位
2017-01-14
已采纳回答 / 慕粉2208167976
你好,改正后的语句应该是:public class HelloWorld {public static void main(String[] args) {for(int i=1;i<=3;i++){for(int j=1;j<=i;j++){System.out.print("*");}System.out.println();}}}你出错误的原因:①,内层循环的System.out.println("*");使每打出一个*号,就会换行,应该改为print,这样在一行内打出*号时不会换行②,...
2017-01-14
最新回答 / 慕粉1461399897
public class getNum2 { public static void main(String[] args) { int to array of int int i1 = 12345; while (i1 >= 1) { System.out.println(i1 % 10); i1 /= 10; } }
2017-01-14
最新回答 / fhqqtd
import java.util.Arrays;public class HelloWorld { //完成 main 方法 public static void main(String[] args) { int [] b = new int[]{89 , -23 , 64 , 91 , 119 , 52 , 73}; HelloWorld hello = new HelloWorld(); hello.a(b); ...
2017-01-13