How to do calculations on Command Prompt ?
www.hackoooo.blogspot.in
The command processor CMD.EXE comes with a mini calculator that can perform simple arithematic operations:
C:\>SET /A 5+3
8
C:\>SET /A 3*(9/4)
6
C:\>SET /A (4*5)/5
4
C:\>SET /A 5+3
8
C:\>SET /A 3*(9/4)
6
C:\>SET /A (4*5)/5
4
0 comments:
Post a Comment