Помогите ламерский вопрос
Indicates whether a numeric value is positive, negative, or zero.
Unit
Math
Category
Arithmetic routines
extern PACKAGE int __fastcall Sign(const double AValue);
extern PACKAGE int __fastcall Sign(const int AValue);
extern PACKAGE int __fastcall Sign(const __int64 AValue);
Description
Use Sign to test the sign of a numeric value. Sign returns
0 if AValue is zero.
1 if AValue is greater than zero.
-1 if AValue is less than zero
Все понятно но как эту функцию подключить -то ?
Цитата:
Originally posted by Zahar
Вот я хочу например использовать Sign()
Indicates whether a numeric value is positive, negative, or zero.
Unit
Math
Category
Arithmetic routines
extern PACKAGE int __fastcall Sign(const double AValue);
extern PACKAGE int __fastcall Sign(const int AValue);
extern PACKAGE int __fastcall Sign(const __int64 AValue);
Description
Use Sign to test the sign of a numeric value. Sign returns
0 if AValue is zero.
1 if AValue is greater than zero.
-1 if AValue is less than zero
Все понятно но как эту функцию подключить -то ?
Вот я хочу например использовать Sign()
Indicates whether a numeric value is positive, negative, or zero.
Unit
Math
Category
Arithmetic routines
extern PACKAGE int __fastcall Sign(const double AValue);
extern PACKAGE int __fastcall Sign(const int AValue);
extern PACKAGE int __fastcall Sign(const __int64 AValue);
Description
Use Sign to test the sign of a numeric value. Sign returns
0 if AValue is zero.
1 if AValue is greater than zero.
-1 if AValue is less than zero
Все понятно но как эту функцию подключить -то ?
#include <math.hpp> пробовал?
Я уже понял спасибо.