POSITION:028,114
COLOUR:STANDARD
TEXT:00,The number of format codes used will depend on the number of values that
TEXT:16,are to be edited and then printed. Let's look more closely at the
TEXT:16,format codes available for the programmer to use:
TEXT:32,   - this will edit any atom values to appear as a decimal integer.
COLOUR:EUPHORIA
TEXT:00,%d
COLOUR:STANDARD
TEXT:16,Decimal integers are the numbers we are all familiar with, using a
TEXT:16,numbering system of 10 digits from 0 to 9.
TEXT:32,   - this will edit any atom values to appear as a hexadecimal integer.
COLOUR:EUPHORIA
TEXT:00,%x
COLOUR:STANDARD
TEXT:16,Hexadecimal integers are numbers that are made up of digits from 0 to 9,
TEXT:16,A, B, C, D, E, and F. It is also known as a "base-16" numbering system
TEXT:16,(our decimal system is a "base-10" numbering system).
TEXT:32,   - this will edit any atom values to appear as an octal integer.
COLOUR:EUPHORIA
TEXT:00,%o
COLOUR:STANDARD
TEXT:16,Octal integers are numbers that are made up of digits from 0 to 7. It is
TEXT:16,also known as a "base-8" numbering system.
