So you need to find the decimal place of the first non-zero digit, then save the next N-1 digits, then round the Nth digit based on the rest.
We can use log to do the first.
log 1239451 = 6.09
log 12.1257 = 1.08
log 0.0681 = -1.16
So for numbers > 0, take the ceil of the log. For numbers < 0, take the floor of the log.
More to come.