How do I set a precision to the SET arithmetic operation on divisions?
eg. SET /A t=3/4
But that gives result as '0' and not '0.75' ( I want at least 2 decimal places )
Or is there any other method for such arithmetic operations (using other than "set /A" ) to happen in Batch files?
SET /Aonly works on integers. So there is no way to get0.75using that – Nifle Jun 16 '11 at 6:54