Without further ado, please see the code:
(float value); (decimal value); (int value); (double value); (sbyte value); (long value); (short value);
PS: Let's take the absolute value function of c++
int abs(int i) Returns the absolute value of the integer parameter i
double cabs(struct complex znum) Returns the absolute value of complex znum
double fabs(double x) Returns the absolute value of double precision parameter x
long labs(long n) Returns the absolute value of long integer parameter n
abs, labs, llabs, imaxabs - compute the absolute value of an integer.
SYNOPSIS
#include <> int abs(int j); long int labs(long int j); long long int llabs(long long int j); #include <> intmax_t imaxabs(intmax_t j);
The above is all the content of this article. I hope that the content of this article will help you study or work. I also hope to support me more!