gpt4 book ai didi

java - for循环的多个条件

转载 作者:行者123 更新时间:2023-11-29 07:10:39 25 4
gpt4 key购买 nike

我正在写一个for循环如下:

for(int i = row, int j = col; i < rows, j < cols; i++, j++)

但是,Java 似乎不喜欢它...有什么方法可以实现类似的效果吗?

谢谢!

最佳答案

使用&&。另外,int只有一次。

for(int i = row, j = col; i < rows && j < cols; i++, j++)

关于java - for循环的多个条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14184219/

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