Q&A

  • 절대값얻는방법
화면상에서 -1300000 이라는 값을 받아서
변수에는 절대값.. 그러니까 -를 뺀 1300000을 넣으려면 어케 해야 하나여?
1  COMMENTS
  • Profile
    서은구 2002.02.16 03:46

    abs 함수를 사용하면 되지 않나요..??
    --------------------------------------------------------------
    Returns an absolute value.

    Unit

    System

    Category

    arithmetic routines

    function Abs(X);

    Description

    Abs returns the absolute value of the argument, X.

    X is an integer-type or real-type expression.
    --------------------------------------------------------------
    integer-type 이니까..-1300000 정도는 가뿐하지 않을까 생각되는데요...
    int64 도 integer-type 맞죠...??