摘要: do while循环结构 do{ 循环体; }while(循环的条件); //显示“hello world”五次 var i=1; while(i<5) { alert("hello world") i++; } var j=6; do{ alert("hello world") j++; }whi 阅读全文
posted @ 2017-11-14 22:15 爱吃肉啊呀 阅读(2383) 评论(0) 推荐(0)