Sunday, June 6, 2010

Calculations On Command Prompt


Calculations On Command Prompt

the command processor CMD.EXE comes with a mini-calculator that can perform simple arithmetic on 32-bit signed integers:

C:\>set /a 2+2
4
C:\>set /a 2*(9/2)
8
C:\>set /a (2*9)/2
9

For more information, type set /? at the command prompt.

No comments:

Post a Comment