home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / autoit-v3-setup.exe / Examples / _MathCheckDiv.au3 < prev    next >
Encoding:
Text File  |  2005-01-09  |  379 b   |  12 lines

  1. #include <math.au3>
  2. $I_Var = InputBox('Odd or Even', 'Enter a number:')
  3. $I_Result = _MathCheckDiv($I_Var, 2)
  4. If $I_Result = -1 Or @error = 1 Then
  5.    MsgBox(0,'','You did not enter a valid number')
  6. ElseIf $I_Result = 1 Then
  7.    MsgBox(0,'','Number is odd')
  8. ElseIf $I_Result = 2 Then
  9.    MsgBox(0,'','Number is even')
  10. Else
  11.    MsgBox(0,'','Could not parse $I_Result')
  12. EndIf