Bat_s 当前离线
列兵
@echo off :: 两个数的求和 set /p a=请输入第一个数: echo.%a% set /p b= 请输入第二个数: echo.%b% set /a a+=b echo %a% echo.&pause复制代码
TOP