一聚教程网:一个值得你收藏的教程网站

热门教程

打印普通的倒三角形

时间:2022-11-14 23:26:39 编辑:袖梨 来源:一聚教程网

要实现的效果为:
× × × × ×
× × × ×
× × ×
× ×
×
public class Study {
public static void main(String[] args){

for(int i=5;i>=1;i--){
for(int j=i;j>=1;j--)
System.out.print(" * ");
if((i-1)<=i)
System.out.println();
}
}
}

相关文章

热门栏目