描述
KiKi学习了循环,BoBo老师给他出了一系列打印图案的练习,该任务是打印用“*”组成的X形图案。
输入描述:
多组输入,一个整数(2~20),表示输出的行数,也表示组成“X”的反斜线和正斜线的长度。
输出描述:
针对每行输入,输出用“*”组成的X形图案。
输入:5
输出:
* *
* *
*
* *
* *
示例2
输入:6
输出:
* *
* *
**
**
* *
* *
思路:
假设i代表行,j代表列,当i==j 或者 i+j+1 == n,此时为星号。其余的都是空格。
代码:
import java.util.Scanner;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
// 注意 hasNext 和 hasNextLine 的区别
while (in.hasNextInt()) { // 注意 while 处理多个 case
int n = in.nextInt();
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
if(i==j){
System.out.print("*");
}else if(i+j+1==n){
System.out.print("*");
}else{
System.out.print(" ");
}
}
System.out.println();
}
}
}
}
标签:输出,Scanner,int,打印,图案,输入 From: https://blog.csdn.net/2401_86415114/article/details/142902937