gpt4 book ai didi

java - 数组比较字符串

转载 作者:行者123 更新时间:2023-12-01 23:53:55 25 4
gpt4 key购买 nike

嗨,我想弄清楚为什么我的代码没有做我想要它做的事情。当我运行代码时,它总是在 for 循环中执行 if 语句。我改变了逻辑,但它总是一直执行 for 循环。我不知道为什么。感谢您的帮助

            for (int col =0; col< s ; col++){
System.out.print(col+ ": ");
for (int row = 0; row<s; row++)
{
x=val[row][col];
if (table[row][col]==row)
{
System.out.print(x+1);
}
//System.out.print(val[col][row]+" ");
if (row+1==s)
System.out.println();
}
}

最佳答案

if 语句末尾有一个分号,请将其删除。

 if (x==2);

关于java - 数组比较字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15895653/

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