replace "i++;" with "i = i + 1;" in testcase 20

This commit is contained in:
Lixuanwang
2025-05-30 01:57:24 +08:00
parent 77f79dcbaf
commit fbb2f5f310

View File

@ -13,7 +13,7 @@ int main(){
if(i > 50){
f = i * d;
}
i++;
i = i + 1;
}
return f;