我想提出if
条件。在该条件下,如果条件是score = 2的倍数。如何编写代码?
if(score >= 2){
//removeChild(Batumc);
//removeChild(Batumc1);
//model soal
Soal_mc.angka1.text = mtk1.toString();
Soal_mc.op.text = "+";
Soal_mc.angka2.text = mtk2.toString();
//soal muncul
TweenLite.to(Soal_mc, 1, {x:350 ,y:180, alpha:1, ease:Expo.easeOut});
}
但是我想要这个代码
if(score >= 2)
成为
if(score multiple of 2){}
答案 0 :(得分:0)
尝试一下:
if(score >=2) {
if((score % 2) == 0) {
//your code goes here
}
}
score % 2
返回除法的余数,如果该返回等于0
,则表示是倍数。