gpt4 book ai didi

java - 我想知道如何将java中的这个由星号组成的城市旋转90度(所以它实际上看起来像一个城市)

转载 作者:行者123 更新时间:2023-12-02 10:19:18 24 4
gpt4 key购买 nike

public class HelloWorld
{

public static void main(String []args)
{
int[] arr = {5,10,23,6,9};
for(int i = 0; i<arr.length; i++)
{

for( int j = 0; j< arr[i]; j++)
{
System.out.print("*");

}

System.out.println();
}
}
}

这是我的代码,但是,它水平打印城市,而我希望它垂直打印。有什么想法吗。

最佳答案

由于您是从上到下 build 城市(这就是打印的工作方式),因此您可以跟踪当前高度,并在该高度处放置一个星号(如果该高度应该有一个星号),否则为每一列放置一个空格.

int[] arr = {5,10,23,6,9};
int max = 23; //you should do this dynamically in the general case
while(max > 0) {
for(int i = 0; i < arr.length; i++) {
if(arr[i] >= max) {
System.out.print("*");
} else {
System.out.print(" ");
}
}
System.out.println();
max--;
}

Here是一个工作示例。

关于java - 我想知道如何将java中的这个由星号组成的城市旋转90度(所以它实际上看起来像一个城市),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54452329/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com