How does one write code for math calculations?
For example: 1.67 X .444 = ?, or division
As in most programs, multiplication is * (asterisk) and division is / (forward slash).
So your example would be x = 1.67 * 0.444 and the same as a division will be x = 1.67 / 0.444 -- the leading zero probably isn't compulsory, but I always use it myself.
Thanks Harry!