gpt4 book ai didi

java - 对于 public static int 我必须返回什么?

转载 作者:行者123 更新时间:2023-12-01 12:09:41 27 4
gpt4 key购买 nike

所以我正在编写一个带有 2D 数组的代码,将其排列成一个方 table ,比如 10 x 10。它充满了 X、O 和空格。输入一个阈值,如果 X 或 O 周围的索引的百分比也大于阈值,则该点满足,否则不满足。

然后我必须将不满意的 X 和 Os 移动到空白处并重复,直到整个板都满意或超过指定的轮数。我写了整个内容,但是当尝试调用 moveAllUnsatisfied 时,我得到 254:错误缺少返回语句。

我想我可以调用 moveAllUnsatisfied 它会改变我的数组。我需要退回什么?或者这是完全错误的,我应该以及如何重做?

我对这段代码的长度和丑陋表示歉意,我知道它可能可以做得更好

public class CellSim{

public static void main(String[] args){

System.out.println("what is the size of your grid?");
char [][] tissue = new char [IO.readInt()][IO.readInt()];
System.out.println("How many like agents are needed to be satisfied?");
int threshold = IO.readInt();
System.out.println("How many rounds to try and satisfy the board?");
int maxRounds = IO.readInt();
System.out.println("How often do you want to see the board?");
int frequency = IO.readInt();
System.out.println("Percentage of X cells?");
int xCells = IO.readInt();
System.out.println("Percentage of blank cells?");
int bCells = IO.readInt();
int roundsDone = 0;
assignCellTypes(tissue, bCells, xCells);
printTissue(tissue);
System.out.println();

boolean boardSat = true;
boardSat = boardSatisfied(tissue, threshold);

if( boardSat == false){
while(roundsDone <= maxRounds || boardSat == false){
moveAllUnsatisfied(tissue, threshold);
roundsDone++;
boardSat = boardSatisfied(tissue, threshold);
while(roundsDone == frequency || roundsDone == frequency * 2){
System.out.println();
printTissue(tissue);
frequency = frequency * 2;
}
}
}
if( boardSat == true){
printTissue(tissue);}

}


public static void printTissue(char[][] tissue){
for(int row = 0;row < tissue.length;row++){
for(int col = 0;col < tissue[row].length;col++){
System.out.print(tissue[row][col] + "\t");
}
System.out.println();
}
}


public static void assignCellTypes(char[][] tissue, int percentBlank, int percentX){
int n = (tissue.length) * (tissue.length);
percentBlank = (int) Math.ceil(n * (percentBlank * .01));
percentX = (int) Math.ceil((n - percentBlank) * (percentX * .01));
int percentO = (int) Math.ceil(n - percentBlank - percentX);

for( int i = 0; i < percentBlank; i++){
while(percentBlank > 0){
int randCell = randInt(0, 9);
int randCell2 = randInt(0, 9);
if(tissue[randCell][randCell2] == '\u0000'){
tissue[randCell][randCell2] = ' ';
break;
}
}
}
for( int i = 0; i < percentX; i++){
while(percentX > 0){
int randCell = randInt(0, 9);
int randCell2 = randInt(0, 9);
if(tissue[randCell][randCell2] == '\u0000'){
tissue[randCell][randCell2] = 'X';
break;
}
}
}
for( int i = 0; i < percentO; i++){
while(percentO > 0){
int randCell = randInt(0, 9);
int randCell2 = randInt(0, 9);
if(tissue[randCell][randCell2] == '\u0000'){
tissue[randCell][randCell2] = 'O';
break;
}
}
}

}

public static boolean isSatisfied(char[][] tissue, int row, int col, int threshold){
int total = 0;
int same = 0;
if(tissue[row][col] == 'X'){
total = 0;
if(col-1 >= 0 && row+1 < tissue.length && tissue[row + 1][col - 1] == 'X'){
same ++;
total ++;
}else if(col-1 >= 0 && row+1 < tissue.length && tissue[row + 1][col - 1] == 'O')
total ++;
if(row+1 < tissue.length && tissue[row + 1][col] == 'X'){
same ++;
total ++;
}else if(row+1 < tissue.length && tissue[row + 1][col] == 'O')
total ++;
if(row+1 < tissue.length && col+1 < tissue[row+1].length && tissue[row + 1][col + 1] == 'X'){
same ++;
total ++;
}else if(row+1 < tissue.length && col+1 < tissue[row+1].length && tissue[row + 1][col + 1] == 'O')
total ++;
if(col-1 >= 0 && tissue[row][col - 1] == 'X'){
same ++;
total ++;
}else if(col-1 >= 0 && tissue[row][col - 1] == 'O')
total ++;
if(col+1 < tissue[row].length && tissue[row][col + 1] == 'X'){
same ++;
total ++;
}else if(col+1 < tissue[row].length && tissue[row][col + 1] == 'O')
total ++;
if(row-1 >= 0 && col-1 >= 0 && tissue[row - 1][col - 1] == 'X'){
same ++;
total ++;
}else if(row-1 >= 0 && col-1 >= 0 && tissue[row - 1][col - 1] == 'O')
total ++;
if(row-1 >= 0 && tissue[row - 1][col] == 'X'){
same ++;
total ++;
}else if(row-1 >= 0 && tissue[row - 1][col] == 'O')
total ++;
if(row-1 >= 0 && col+1 < tissue[row-1].length && tissue[row - 1][col + 1] == 'X'){
same ++;
total ++;
}else if(row-1 >= 0 && col+1 < tissue[row-1].length && tissue[row - 1][col + 1] == 'O')
total ++;

}
if(tissue[row][col] == 'O'){
total = 0;
if(col-1 >= 0 && row+1 < tissue.length && tissue[row + 1][col - 1] == 'O'){
same ++;
total ++;
}else if(col-1 >= 0 && row+1 < tissue.length && tissue[row + 1][col - 1] == 'X')
total ++;
if(row+1 < tissue.length && tissue[row + 1][col] == 'O'){
same ++;
total ++;
}else if(row+1 < tissue.length && tissue[row + 1][col] == 'X')
total ++;
if(row+1 < tissue.length && col+1 < tissue[row+1].length && tissue[row + 1][col + 1] == 'O'){
same ++;
total ++;
}else if(row+1 < tissue.length && col+1 < tissue[row+1].length && tissue[row + 1][col + 1] == 'X')
total ++;
if(col-1 >= 0 && tissue[row][col - 1] == 'O'){
same ++;
total ++;
}else if(col-1 >= 0 && tissue[row][col - 1] == 'X')
total ++;
if(col+1 < tissue[row].length && tissue[row][col + 1] == 'O'){
same ++;
total ++;
}else if(col+1 < tissue[row].length && tissue[row][col + 1] == 'X')
total ++;
if(row-1 >= 0 && col-1 >= 0 && tissue[row - 1][col - 1] == 'O'){
same ++;
total ++;
}else if(row-1 >= 0 && col-1 >= 0 && tissue[row - 1][col - 1] == 'X')
total ++;
if(row-1 >= 0 && tissue[row - 1][col] == 'O'){
same ++;
total ++;
}else if(row-1 >= 0 && tissue[row - 1][col] == 'X')
total ++;
if(row-1 >= 0 && col+1 < tissue[row-1].length && tissue[row - 1][col + 1] == 'O'){
same ++;
total ++;
}else if(row-1 >= 0 && col+1 < tissue[row-1].length && tissue[row - 1][col + 1] == 'X')
total ++;


}
if(tissue[row][col] == ' '){
return true;
}if(total == 0){
return false;
}else if(((same / total) * 100) >= threshold){
return true;
}else{ return false;}
}

public static boolean boardSatisfied(char[][] tissue, int threshold){
boolean isSat = false;
boolean bSat = true;

for(int row = 0;row < tissue.length;row++){
for(int col = 0;col < tissue[row].length;col++){
if(tissue[row][col] == 'X'){
isSat = isSatisfied(tissue, row, col, threshold);
if(isSat == false){
tissue[row][col] = 'U';
bSat = false;
}
}
if(tissue[row][col] == 'O'){
isSat = isSatisfied(tissue, row, col, threshold);
if(isSat == false){
tissue[row][col] = 'Q';
bSat = false;
}
}
}
}

if(bSat == false){
return false;
}else{return true;}
}


public static int moveAllUnsatisfied(char[][] tissue, int threshold){
for(int row = 0;row < tissue.length;row++){
for(int col = 0;col < tissue[row].length;col++){
if(tissue[row][col] == 'U'){
tissue[row][col]= ' ';
int ranCell = randInt(0, 9);
int ranCell2 = randInt(0, 9);
while(tissue[ranCell][ranCell2] == 'X' || tissue[ranCell][ranCell2] == 'O' || tissue[ranCell][ranCell2] == ' '){
ranCell = randInt(0, 9);
ranCell2 = randInt(0, 9);
if(tissue[ranCell][ranCell2] == ' '){
tissue[ranCell][ranCell2] = 'X';
break;
}
}
}
if(tissue[row][col] == 'Q'){
tissue[row][col]= ' ';
int ranCell = randInt(0, 9);
int ranCell2 = randInt(0, 9);
while(tissue[ranCell][ranCell2] == 'X' || tissue[ranCell][ranCell2] == 'O' || tissue[ranCell][ranCell2] == ' '){
ranCell = randInt(0, 9);
ranCell2 = randInt(0, 9);
if(tissue[ranCell][ranCell2] == ' '){
tissue[ranCell][ranCell2] = 'X';
break;
}
}
}

}
}
}


public static int randInt(int min, int max){

int range = (max - min) + 1;
return(int)(Math.random() * range) + min;
}



}

最佳答案

就像“public static int randInt”一样,您应该返回一个 int。你可以添加“return 0;”或者您可以将签名更改为“public static void moveAllUnsatisfied”。

关于java - 对于 public static int 我必须返回什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27336712/

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