Subject:
|
Re: NQC programming guide
|
Newsgroups:
|
lugnet.robotics
|
Date:
|
Tue, 5 Dec 2006 22:44:31 GMT
|
Original-From:
|
linmix <linmix@gmail^nomorespam^.com>
|
Viewed:
|
3635 times
|
| |
| |
Steve Lane <stevenrobertlane@ wrote:
> In lugnet.robotics, linmix <linmix@gmail.com> wrote:
>
>
> > For example, I haven't a clue how I could use an array, what a bitwise
> > negation, AND, XOR or XOR is, why I would want to use #include, or even
> > what the increment of x++ will be.
>
>
> 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?
> 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.)
> #include lets you include files that other people have written, like a toolkit
> of parts.
>
> Steve
>
> The other stuff I've never needed.
>
>
|
|
Message has 2 Replies: | | Re: NQC programming guide
|
| (...) 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 (...) (18 years ago, 5-Dec-06, to lugnet.robotics)
| | | Re: NQC programming guide
|
| (...) Because there is an additional relationship established between the array elements, namely that of succession. Five variable names would not have such a property. Now go and read a book on computer programming, please. ++L (18 years ago, 6-Dec-06, to lugnet.robotics)
|
Message is in Reply To:
| | Re: NQC programming guide
|
| (...) 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. x++ If you write x++ in your code and x=1, once used, one will be added to it so it (...) (18 years ago, 5-Dec-06, to lugnet.robotics)
|
14 Messages in This Thread:
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
This Message and its Replies on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|