Re: where is 6 coming from
for (ouch = 3; ouch < 6; ouch++)
;
System.out.print(" " + ouch);
Re: where is 6 coming from
Quote:
Originally Posted by
eRaaaa
for (ouch = 3; ouch < 6; ouch++)
;
System.out.print(" " + ouch);
but the for statement is empty, how is it affecting the print statment below?
Re: where is 6 coming from
yes but the loop runs still couch(local couch) is less than 6 (after the loop couch(local) is 6!)
Re: where is 6 coming from
Quote:
Originally Posted by
eRaaaa
yes but the loop runs still couch(local couch) is less than 6 (after the loop couch(local) is 6!)
thanks eRaaaa