1# Three digits in, 2/6 digits out, rounding down.
21110	2	6
3111	2	6
411.1	2	6
51.11	2	6
60.111	2	6
70.0111	2	6
80.00111	2	6
90.000111	2	6
100.0000111	2	6
11
12# One digit in. Must not produce spurious digits or trailing nulls.
13
141000	2	6
15100	2	6
1610	2	6
171	2	6
180.1	2	6
190.01	2	6
200.001	2	6
210.0001	2	6
220.00001	2	6
230.0000011	2	6
24
25# Three digits in, 2/6 digits out, rounding up.
26
27996	2	6
2899.6	2	6
299.96	2	6
30.996	2	6
31.0996	2	6
32.00996	2	6
33.000996	2	6
34
35# Three digits in, 1/6 digits out, rounding down.
36
371110	1	6
38111	1	6
3911.1	1	6
401.11	1	6
410.111	1	6
420.0111	1	6
430.00111	1	6
440.000111	1	6
450.000011	1	6
46
47# One digit in. Must not produce trailing nulls.
48
491000	1	6
50100	1	6
5110	1	6
521	1	6
530.1	1	6
540.01	1	6
550.001	1	6
560.0001	1	6
570.00001	1	6
580.0000011	1	6
59
60# Three digits in, 1/6 digits out, rounding up.
61
62996	1	6
6399.6	1	6
649.96	1	6
65.996	1	6
66.0996	1	6
67.00996	1	6
68.000996	1	6
69