Here is the same program in JavaScript: var total = 0, count = 1; while (count <= 10) { total += count; count += 1; } print(total);.
確定! 回上一頁