<p> 以下代码的输出结果是什么?( )<br/> function myFunction(x)<br/> while x > 0 do<br/> if x == 3 then<br/> x = x – 1<br/> goto continue<br/> end<br/> print(x)<br/> x = x – 1<br/> ::continue::<br/> end<br/> end<br/> myFunction(5)</p>
<p> 1 2 3 4 5</p>
<p> 5 4 2 1</p>
<p> 5 4 2</p>
<p> Error</p>