用javascript编写一段程序,计算1到1000之间所有整数的和,并显示结果。

2024-12-03 13:15:43
推荐回答(1个)
回答1:

function getR(a,b){
var s = 0;
while(b>=a){
s = b--+s;
}

return s;
}

document.write(getR(1,1000))