Jump to content

I eat corn


Gunman

Recommended Posts

Member
(edited)
So explain your code NOFX.  I don't understand what the "x++" stands for.  Might help, although not really needed I suppose, what language it is.

instead of setting it up like

 

while (x <=10, x++);

{

i = i+x;

}

print i;

 

this might make more sense....

 

while (x <=10);

{

i = i+x;

x=x+1;

}

print i;

 

they both do the same thing

Edited by NOFX
Link to comment
Share on other sites

  • 2 weeks later...
×
×
  • Create New...