Re: NQC programming guide
"Steve Lane" <stevenrobertlane@ <"nospamplease>yahoo.co.uk"@ipx11873.ipxserver.de> Tue, 5 Dec 2006 23:39:17 GMT
| Newsgroups | gmane.comp.hardware.lego.robotics |
|---|---|
| Organization | None |
| Message-ID | <[email protected]> |
In lugnet.robotics, linmix <[email protected]> wrote: > Steve Lane <stevenrobertlane@ wrote: >> I wouldn't say I was a great programmer either. An array is simply a sequence of >> memory variables (say 1-10) that can be accessed via their numeric position. > > So why use an array with say 5 values and not 5 variables? If you want to perform the same operation (or sum) on multiple variables, you can use a loop. As long as you use the same variable that controls the loop to control the array, then each successive iteration through the loop will perform the sum on the next position in the array. >> x++ >> >> If you write x++ in your code and x=1, once used, one will be added to it so it >> equals two. >> >> If you write ++x the one will be added before it's used. It's short hand for >> x=x+1; > > so it's always +1, not like my pocket calculator which will keep adding > the original value of x if I use a double + > (5++ =10, 15, 20, etc.) Yes, it's always plus one (or minus one X--;) Steve The other posters are right, learn basic C#.