Why do these 2 statements not give me the same response? even though they are identical mathematically...
in
Programming Questions
•
7 months ago
float m = (minute()*(360/60) - 90;
And this one:
m = ((minute()/60)*(360) - 90;
They do not give the same thing, am I missing something?
And this one:
m = ((minute()/60)*(360) - 90;
They do not give the same thing, am I missing something?
1