One foot is by definition 0.3048 meters.
If you write
feet = meters * 3.28;
instead of
feet = meters / 0.3048;
Why, other than sloppiness? I mean, both operations take the same number of clock cycles, but the former is numerically wrong.
One foot is by definition 0.3048 meters.
If you write
feet = meters * 3.28;
instead of
feet = meters / 0.3048;
Why, other than sloppiness? I mean, both operations take the same number of clock cycles, but the former is numerically wrong.