Why does processScientificMeasurement accept an int64 parameter?
processScientificMeasurement
int64
Using int64 guarantees that later floating-point conversion loses no precision.
It must accept whole numbers beyond the 32-bit integer range.
The %.7f formatter requires the original input to be int64.
%.7f
math.Sqrt accepts only int64 arguments.
math.Sqrt