Section courante

A propos

Section administrative du site

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 :

  1. PRINT "00h = "; DECHEX$(0)
  2. PRINT "01h = "; DECHEX$(1)
  3. PRINT "02h = "; DECHEX$(2)
  4. PRINT "0Ah = "; DECHEX$(10)
  5. PRINT "0Fh = "; DECHEX$(15)
  6. PRINT "10h = "; DECHEX$(16)
  7. PRINT "20h = "; DECHEX$(32)
  8. PRINT "56h = "; DECHEX$(86)
  9. PRINT "73h = "; DECHEX$(115)
  10. PRINT "EFh = "; DECHEX$(239)
  11. PRINT "FFh = "; DECHEX$(255)

on obtiendra le résultat suivant :

00h = 0
01h = 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