I am developing a CMD batch. I want to do some math in it. This formula: (x+1)100:y
(x+1)100:y
So in batch, x = %x%, and y = %y%. I know how to set t
x = %x%, and y = %y%
set /a
set /a 2+2
set /a 2-2
set /a 2*2
set /a 2/2
set /a 2^2
use brackets and parentheses to show the properties of the equations for ex. 2(2+2)=8 Shows distributive property.
2(2+2)=8