Items
Conversion
form
BIN data before
conversion
ASCII data after
conversion
Description
%x
n: Total number of characters, m:
Number of characters of precision
<Number of characters of precision>
[d , ld , i , Li , u , Lu , x , Lx , X , LX , b ,
Lb ] represents the number of
characters of numerical strings.
[f , Lf , e , Le , E , LE ] represents the
number of characters after the decimal
point. Be sure to also specify the
number of places after the decimal
point.
[g , Lg , G , LG] represent the number
of significant figures.
If there is no specification for the
number of characters, the number of
digits for the data after conversion and
the storage area size will vary
according to the data before
conversion.
H 12A "12a"
%5x H 12A "␣␣12a"
%10.5x H 12A "␣␣␣␣␣0012a"
%b H 123 "123"
%5b H 123 "␣␣123"
%f SF 123.4567 "123.4567"
%8.3f SF 123.4567 "␣123.457"
%e SF 1234.567 "1.234567e+03"
%10.3e SF 1234.567 "␣1.235e+03"
%g SF 1234.567 "1234.567"
%8.6g SF 1234.567 "␣1234.57"
Specification
of zero
padding
%05d K 100 "00100"
When the setting for the display digit is
available, zero padding can be
specified. Put zero (0) before the
display digit.
%05x H 12A "0012a"
%05b H 123 "00123"
%08.3f SF 123.4567 "0123.457"
%010.3e SF 1234.567 "01.235e+03"
Specification
of right align
and left align
%-5d K 100 "100␣␣"
Default is right align. To set to left align,
add minus (-) before the specification of
digit number.
%-5x H 12A "12a␣␣"
%-5b H 123 "123␣␣"
%-8.3f SF 123.4567 "123.457␣"
%-010.3e SF 1234.567 "1.235e+03␣"
Specification
of sign
%+d K 100 "+100"
This option is specified to add a plus
sign (+). A plus sign (+) is not added by
default.
%+d K -100 "-100"
%+5d K 100 "␣+100"
%+8.3f 123.4567 "+123.457"
%+10.3e 1234.567 "+1.234e+03"
Specification
of numerical
position
%␣d K 100 "␣100"
In the case of a positive number, a
space is added to align the positive
number with negative numbers.
When specifying %u, %x, or %b,
existence of "␣" does not affect the
results.
%␣d K -100 "-100"
%␣8.3f SF 123.4567 "␣123.457"
%␣8.3f SF -123.4567 "-123.457"
%␣10.3e SF 1234.567 "␣1.235e+03"
%␣10.3e SF -1234.567 "-1.235e+03"
Specification
of another
output format
for numerical
data type
%#x H 12A "0x12a" "0x" is added. Another output
type is
automatically
given by
adding "#".
%#X H 12A "0X12A" "0X" is added.
%#8.0f SF 123.4567 "␣␣␣␣123."
"." is always added.
14.14 PRINT/EPRINT Instruction Shared Conversion Form Table
14-72 WUME-FP7CPUPGR-12