myspacee Posted May 13, 2009 Share Posted May 13, 2009 hello, need help with logic to understand when a number is odd or even. When i understand if number is odd i must add 1 to solve a little problem i've in another script. Anyone help please ? m. Link to comment Share on other sites More sharing options...
nitekram Posted May 13, 2009 Share Posted May 13, 2009 hello, need help with logic to understand when a number is odd or even. When i understand if number is odd i must add 1 to solve a little problem i've in another script. Anyone help please ? m. $n = 18 If mod($n, 2) = 0 Then MsgBox(0,"", $n & " is an even number.") Else MsgBox(0, "", $n & " is an odd number.") EndIf $x = mod(4, 7) ;$x == 4 because the divisor > dividend $y = mod(1, 3/4) ;$y == 0.25 because the divisor is a float $n = 18 If mod($n, 2) = 0 Then MsgBox(0,"", $n & " is an even number.") Else MsgBox(0, "", $n & " is an odd number.") EndIf $x = mod(4, 7) ;$x == 4 because the divisor > dividend $y = mod(1, 3/4) ;$y == 0.25 because the divisor is a float 2¢ All by me:"Sometimes you have to go back to where you started, to get to where you want to go." "Everybody catches up with everyone, eventually" "As you teach others, you are really teaching yourself." From my dad "Do not worry about yesterday, as the only thing that you can control is tomorrow." WIKI | Tabs; | Arrays; | Strings | Wiki Arrays | How to ask a Question | Forum Search | FAQ | Tutorials | Original FAQ | ONLINE HELP | UDF's Wiki | AutoIt PDF AutoIt Snippets | Multple Guis | Interrupting a running function | Another Send StringRegExp | StringRegExp Help | RegEXTester | REG TUTOR | Reg TUTOT 2 AutoItSetOption | Macros | AutoIt Snippets | Wrapper | Autoit Docs SCITE | SciteJump | BB | MyTopics | Programming | UDFs | AutoIt 123 | UDFs Form | UDF Learning to script | Tutorials | Documentation | IE.AU3 | Games? | FreeSoftware | Path_Online | Core Language Programming Tips Excel Changes ControlHover.UDF GDI_Plus Draw_On_Screen GDI Basics GDI_More_Basics GDI Rotate GDI Graph GDI CheckExistingItems GDI Trajectory Replace $ghGDIPDll with $__g_hGDIPDll DLL 101? Array via Object GDI Swimlane GDI Plus French 101 Site GDI Examples UEZ GDI Basic Clock GDI Detection Ternary operator Link to comment Share on other sites More sharing options...
myspacee Posted May 13, 2009 Author Share Posted May 13, 2009 wow, fast as lighting, find also this: $number = 123 If Not BitAND($number,1) Then MsgBox(0,"","even number") Else MsgBox(0,"","odd number") EndIf thank you again, m. Link to comment Share on other sites More sharing options...
Spiff59 Posted May 13, 2009 Share Posted May 13, 2009 $n = 17 $n += (mod($n,2)) MsgBox(0,"", $n) ahmeddzcom 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now