我基本上是在尝试编写一个 else-if 语句,如果该行的第一个元素不是 -1 或者该行不是全零,则该语句会过滤掉一行。例如,
-1 0 0 1 1
0 0 0 0 0
都会通过
但1 0 1 1 1
不会
我为此拥有的代码部分是
else if (headSetChecked && j!= cols-1)
{
if (tempRow[0]!== -1 || tempRow[j]!== 0);
{
isScrap=true;
break;
}
}
我收到错误 C2059: syntax error:'=' om the "if statement"。我知道我的语法是错误的,但我不确定要改成什么。“tempRow”是我要通过并过滤掉不符合条件的行的数组。提前感谢您的帮助!