返回列表 发帖
@echo off
set /p a="第一运算量:"
set /p c="运算符号(+-*%%/):"
set /p b="第二运算量:"
set /a d=%a%%c%%b%
echo 运算结果为%d%
pause

TOP

返回列表