js输出每5个数据为一行
var count=0;
var i=20;
while (i<=80) {
if(i%3==0){
document.write (i+" ")
count++;
if(count%5==0){
document.write("<br>")
}
}
i++
}