Q&A

  • Odd()함수......
Odd() 함수 용도좀 알고 싶은데요.. 뭐하는 함순지좀..

초보에욥.. ㅠ.ㅠ

1  COMMENTS
  • Profile
    신승철 2000.05.22 19:50
       wrote:

    > Odd() 함수 용도좀 알고 싶은데요.. 뭐하는 함순지좀..

    > 초보에욥.. ㅠ.ㅠ



    Returns True if argument is an odd number.



    Unit : System

    Category : ordinal routines



    function Odd(X: Longint): Boolean;

    ----------------------------------



    Description :

    Odd tests if the argument is an odd number. It returns True if X is an odd number, False if X is even.



    위의 글들을 보시면 알겠지만.(delphi help)

    odd(interger) 함수는 '홀수'인지 아닌지를 판별하는 함수입니다.

    예를 들자면.



    begin

    if Odd(5) then

    Canvas.TextOut(10, 10, '5 is odd.')

    else

    Canvas.TextOut(10, 10, 'Something is odd!');

    end;



    하면 if문에서 빠지겠지요...?

    help를 생활화하는 습관을 가지세요 ^^