Java经典编程题50道之四十七
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java经典编程题50道之四十七相关的知识,希望对你有一定的参考价值。
读取7个数(1~50)的整数值,每读取一个值,程序打印出该值个数的*。
public class Example47 {
public static void main(String[] args) {
int[] a = { 10, 7, 6, 15, 4, 3, 20 };
display(a);
}
public static void display(int[] a) {
System.out.print("读取的整数有:");
for (int r : a) {
System.out.println(r + " ");
}
for (int i = 0; i < a.length; i++) {
System.out.print("打印" + a[i] + "个*:");
for (int j = 0; j <= a[i]; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
以上是关于Java经典编程题50道之四十七的主要内容,如果未能解决你的问题,请参考以下文章