Answer:
var count = 0;
var counterElement = document.getElementById("counter");
counterElement.innerHTML = count;
var interval = setInterval(function () {
count++;
counterElement.innerHTML = count;
if (count === 3) {
clearTimeout(interval);
}
}, 400);
total = 0
numerator = 1
denominator = 1
while denominator != 20:
total += numerator/denominator
denominator+=1
print(total)
I wrote my code in python 3.8. I hope this helps.
Answer:
i would love to actually answer this im so sorry
Explanation:
Answer:
Alternatively, you can click the comment box icon (next to “Share”) to see all the suggested edits and comments in one place.