...%d picture you can use %f picture. See this awk examples (I use awk for DOS and Win):
awk "BEGIN { printf \"%015d\", 69.35 * 100 }"
000000000006934
"BEGIN { printf \"%015.0f\", 69.35 * 100 }"
000000000006935
See also Python's behaviour in this...