时间限制:1.0s 内存限制:512.0MB
问题描述
编写一个程序,首先输入一个整数,例如5,然后在屏幕上显示如下的图形(5表示行数):
* * * * *
* * * *
* * *
* *
*
import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc=new Scanner(System.in); int n=sc.nextInt(); for(int i=n;i>=1;i--){ for(int j=1;j<=i;j++){ System.out.print("* "); } System.out.println(); } } }
时间: 2024-10-10 13:48:26