DECHEX$ |
Décimal hexadécimal |
---|---|
Liberty BASIC |
Syntaxe
DECHEX$(n) |
Paramètres
Nom | Description |
---|---|
n | Ce paramètre permet d'indiquer l'expression contenant le nombre à traiter |
Description
Cette fonction retourne sous forme de chaîne de caractères un nombre hexadécimal d'une valeur numérique.
Exemple
Voici quelques exemples typiques de l'utilisation de cette fonction :
- PRINT "00h = "; DECHEX$(0)
- PRINT "01h = "; DECHEX$(1)
- PRINT "02h = "; DECHEX$(2)
- PRINT "0Ah = "; DECHEX$(10)
- PRINT "0Fh = "; DECHEX$(15)
- PRINT "10h = "; DECHEX$(16)
- PRINT "20h = "; DECHEX$(32)
- PRINT "56h = "; DECHEX$(86)
- PRINT "73h = "; DECHEX$(115)
- PRINT "EFh = "; DECHEX$(239)
- PRINT "FFh = "; DECHEX$(255)
on obtiendra le résultat suivant :
00h = 001h = 1
02h = 2
0Ah = A
0Fh = F
10h = 10
20h = 20
56h = 56
73h = 73
EFh = EF
FFh = FF
Dernière mise à jour : Vendredi, le 21 juin 2013