gpt4 book ai didi

Java模式设计

转载 作者:太空宇宙 更新时间:2023-11-04 13:41:23 25 4
gpt4 key购买 nike

我正在尝试在java上制作这个模式:

*******
******
*****
****
***
**
*

但是,到目前为止我只能生成以下代码:

public  class Pattern
{
public static void main(String [] args) {
int height = 7;
for (int i = 0; i <= height; i++ ) {
for (int j = 0; j <= i ; j++) {
System.out.print("*");
}
System.out.println();
}
}
}

此代码只能生成此图像:

*
**
***
****
*****
******
*******
********

我应该更改代码的哪一部分才能生成第一张图像?

感谢您的帮助,如果这是一个错误的问题,我深表歉意但我非常感谢您的帮助。

最佳答案

int height = 7;
for (int i = height; i>=1; i-- ) { //reverse,and change '0' to '1'
int space_cnt = height - i; //number of space we need
for (int j = 1; j <= height ; j++) {
if(space_cnt-->0){
System.out.print(" ");
}else{
System.out.print("*");
}
}
System.out.println();
}

关于Java模式设计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31230623/

25 4 0
文章推荐: java - TreeCellEditor 在编辑单元格后执行操作
文章推荐: html - 为什么在空 html 文件中应用边框时通用选择器显示两个元素? (CSS)
文章推荐: html - 我可以让 border-bottom 看起来比
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com