LABS |
Absolue pour long |
---|---|
Symantec C++ Version 6.0+ | math.h |
Syntaxe
long labs(long n); |
Paramètres
Nom | Description |
---|---|
n | Ce paramètre permet d'indiquer l'expression contenant le nombre à traiter |
Description
Cette fonction retourne la valeur absolue d'un entier de type «long».
Exemple
Voici quelques exemples typiques de l'utilisation de cette fonction :
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
-
- int main() {
- printf("Abs(-1048576)=%i\n",labs(-1048576));
- printf("Abs(65536)=%i\n",labs(65536));
- printf("Abs(1)=%i\n",labs(1));
- printf("Abs(-1)=%i\n",labs(-1));
- printf("Abs(30.2)=%i\n",labs(30.2));
- printf("Abs(-35.4)=%i\n",labs(-35.4));
- return EXIT_SUCCESS;
- }
on obtiendra le résultat suivant :
Abs(-1048576)=1048576Abs(65536)=65536
Abs(1)=1
Abs(-1)=1
Abs(30.2)=30
Abs(-35.4)=35
Dernière mise à jour : Dimanche, le 9 décembre 2018