gpt4 book ai didi

java - 从函数/方法返回 for 循环打印的网格

转载 作者:行者123 更新时间:2023-12-02 02:51:29 26 4
gpt4 key购买 nike

如何返回在下面的函数/方法中打印的网格?我正在使用 String 函数/方法,但我完全不确定如何返回主类中该函数/方法打印的内容。

public static String Grid(){
int[][] map = new int[4][4];
map[x][y] = entry;
int counter = 0;
for (int i = 0; i < map.length; i++) {
for (int j = 0; j < map[i].length; j++) {
if (counter != 2) {
if (j < 2) {
System.out.print("+---");
} else if (j == 2) {
System.out.print("++---+");
} else {
System.out.print("---+");
}
}
else{
if (j < 2) {
System.out.print("+===");
} else if (j == 2) {
System.out.print("++===+");
} else {
System.out.print("===+");
}
}
}
System.out.println();

for (int j = 0; j < map[i].length; j++) {
if (j < 2) {
System.out.print("| " + map[i][j] + " ");
} else if (j == 2) {
System.out.print("|| " + map[i][j]);
} else {
System.out.print(" | " + map[i][j] + " |");
}
}
System.out.println();
counter++;
}
System.out.print("+---+---++---+---+");
System.out.println();
}

最佳答案

创建一个字符串构建器

StringBuilder result = new StringBuilder();

替换每个

System.out.println();

result.append("\n");

并替换

System.out.print(string);

result.append(string);

在方法末尾添加

return result.toString();

关于java - 从函数/方法返回 for 循环打印的网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43782437/

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