Hey people,
I have a pretty dumb problem at hand, I’m trying to work out a little piece of code that can tel if an integer is even or not.
Here is a little example :
ActionScript Code:
[FONT=Courier New][LEFT][COLOR=#0000FF]for[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000]**var**[/COLOR] i:[COLOR=#0000FF]Number[/COLOR] = [COLOR=#000080]0[/COLOR]; i < [COLOR=#000080]100[/COLOR]; i++[COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
[COLOR=#000000]var[/COLOR] myMc:Movie = [COLOR=#0000FF]this[/COLOR][COLOR=#000000][[/COLOR][COLOR=#FF0000]“myMc”[/COLOR]+i[COLOR=#000000]][/COLOR];
[COLOR=#808080]//[/COLOR]
[COLOR=#808080]// here comes the problem[/COLOR]
[COLOR=#0000FF]if[/COLOR][COLOR=#000000]([/COLOR]i is an uneven [COLOR=#0000FF]number[/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
actions go here
[COLOR=#000000]}[/COLOR] [COLOR=#0000FF]else[/COLOR] [COLOR=#0000FF]if[/COLOR] [COLOR=#000000]([/COLOR]i is an even [COLOR=#0000FF]number[/COLOR] [COLOR=#000000]{[/COLOR]
actions go here
[COLOR=#000000]}[/COLOR]
[COLOR=#000000]}[/COLOR]
[/LEFT]
[/FONT]
thats pretty much what I’m trying to get done, and I really can’t come up with any kind of calculation to check for even or uneven numbers
Any help or insight would be greatly appreciated
thx