题解 | #箭形图案#
箭形图案
http://www.nowcoder.com/practice/a6d1081e0c9a42f19e42ed6cd91556c1
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
while(scan.hasNextInt()) {
int n = scan.nextInt();
//上层的图形
int x = n;
for(int i = 1; i <= n; i++) {
for(int j = 2 * x; j >= 1; j--) {
System.out.print(" ");
}
x--;
for(int j = 1; j <= i; j++) {
System.out.print("*");
}
System.out.println();
}
//最长的那条线
for(int i = 1; i <= n + 1; i++) {
System.out.print("*");
}
System.out.println();
//下层的部分
for(int i = 1; i <= n; i++) {
for(int j = 1; j <= 2 * i; j++) {
System.out.print(" ");
}
for(int j = n; j >= i; j--) {
System.out.print("*");
}
System.out.println();
}
}
}
}
Java基础练习题 文章被收录于专栏
都是一些基础的语法题目,每天可以刷几道。

