[code="java"]var a = 3; var b = 4;
a*b a*b*b a*b*b*b a*b*b*b*b
請問a*b要怎麼寫成迴圈的形式 for (i = 1; i <= 4; i++) { //想不出來 }[/code]
收起
a*=b;
报告相同问题?