Monday, January 6, 2014

Blog 30

Blog 30

Study the code and  work out the values of teh variables after it runs. Enter values for a and b.

var a = -100;
while (a<- 5) {
a = a + 2;
}

var b = 20;
while (b> - 5) {
b = b +10;
{


a =

b =

6 comments: