最新回答 / 宝慕林9066606
public class HelloWorld { public static void main(String[] args) { System.out.println("打印直角三角形"); int i,j; i=1; while (i<=3) { j=1; while (j<=i) { System.out.print("*"); j++; ...
2019-06-24
最新回答 / 慕粉3465594
如果用for循环如下:public class HelloWorld{ public static void main(String[] args){ int num = 999; int count = 0; for(;;){ count++; num = num / 10; if(num == 0) break; } System....
2019-06-24
最新回答 / weixin_慕码人0458957
for条件的num>0后,没有执行count++了,至于解决方法就太多了,可以在for里面的count++放到num=num/10,然后将for循环里的count++改为num(即不改变num的值)即可
2019-06-22
最赞回答 / 慕粉4186464
// 引入Arrays类 import java.util.Arrays; public class HelloWorld { public static void main(String[] args) { HelloWorld hello = new HelloWorld(); int [] Scores = {89,-23,64,91,119,52,73}; ...
2019-06-20