Posts by Talita • 33 points
2 posts
-
2
votes1
answer1420
viewsQ: do the multiplication of values using sum operator and while
var n1 = Number(window.prompt(" digite o primeiro número ")); var n2 = Number(window.prompt(" digite o segundo número ")); var soma; var num = 0; while( num…
-
1
votes3
answers729
viewsQ: Receive two positive numbers and repeat the interval between them with while?
How to make a Javascript program that takes two positive numbers and repeats the interval between them using while? var num1 = Number(window.prompt("Entre com primeiro numero")); var num2 =…