我尝试在 asymptote 中的 for 循环中使用模数,但编译失败。模数行出现语法错误。没有模数,它也能正常工作。
for (int i=0; i<4; ++i) {
if (i%2==0){
do stuff
}else{
do stuff
}
}
你能告诉我如何在 Asymptote 中正确写入吗?
答案1
在百分号前加上 \
if (i\%2==0){