The Expression
Volume = Calculatecylinder Volume (FRADIUS, FHEIGHT) / 3;
Will BE All Right, while:
Fvolume = (1/3) * CalculateCylinderVolume (FRADIUS, FHEIGHT);
Will Be Wrong, The Result IS 0.00
-End-