Q&A

  • 데이타 표현에 관하여..
C 에서 보면요..
프린트에서 03.3f 라는 표현이 있자나요..
델파이에서는 그런거 없나요?
소숫점 3자리까지만 표현하고 싶은데요....
정수부분은 다 표시하고요...
어떻게 할수 없나요?
1  COMMENTS
  • Profile
    홍성락 2003.01.18 07:06
    일단 RoundTo와 Format을 헬프로 찾아보세요

    function RoundTo(const AValue: Double; const ADigit: TRoundToRange): Double;
    RoundTo(1.23456789, -3)        =>  1.234

    function Format(const Format: string; const Args: array of const): string;
    Format('%15.3f',[DDD])


    hsr/////////////////////////