Calculations On Command Prompt

Monday 18 July 2011

Calculations On Command Prompt

Yes command Prompt is used for hacking but we can also do small calculation

Heres' the Secret

Open command prompt :: open run (window key + R) type cmd and do the following step


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

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

0 comments: