Math on batch (win)

后端 未结 4 852
你的背包
你的背包 2020-12-15 21:58

I am developing a CMD batch. I want to do some math in it. This formula: (x+1)100:y

So in batch, x = %x%, and y = %y%. I know how to set t

4条回答
  •  清酒与你
    2020-12-15 22:50

    The set command supports some limited calculation. In your case, you want: set /a result=(100*x)/y

    Run set /? to see full documentation on what is supported. The /a switch does automatic variable substitution, so you can use x instead of %x%.

提交回复
热议问题