问题描述
编写一个程序,首先输入一个整数,例如5,然后在屏幕上显示如下的图形(5表示行数):
* * * * *
* * * *
* * *
* *
*
结果
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
for(int x=0;x<n;x++) {
for(int y=0;y<n-x;y++) {
System.out.print("*");
}
System.out.println("");
}
}
}
每个*有空格,修改一下
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
for(int x=0;x<n;x++) {
for(int y=0;y<n-x;y++) {
System.out.print("* ");
}
System.out.println("");
}
}
}
完成
网友评论