+ 1
Why dont this work??
var i=0; var g=27; while (i<=666) { document.write(i + g + "<br />"); i+g; }
4 Respostas
+ 1
try "i = i + g;" instead of "i+g;"
+ 1
im not much familar with java
but i think you must create another variable to keep sum of 2 numbers
var x ;
x= i+g;
documet.wirte(x +"<br/>");
this might work
+ 1
thanks!!!
0
your welcome :-)