所以我正在尝试编写一个基本的计算机程序。而且我在某些语法上遇到了一些麻烦。代码如下。
@echo off
cls
color 71
:start
echo -----------------------------------
echo Welcome to Tandy's Calculator! v0.1
echo -----------------------------------
echo Enter your first number below
echo Type "help" to see the list of available commands
echo -----------------------------------
set /p "_input1=Please Enter The First Number or Command:"
cls
goto subroutine
:subroutine
:: the below line gives me the "goto was unexpected at this time" error
if /i "%_input1%"=="help" goto help1
if /i "%_input1%"=="back" goto _input1
if /i "%_input1%"=="clear" goto clearVar (
goto checkVar
)
每次执行该文件时,我都会收到一条错误消息“此时 goto 是意外的”并且命令窗口会关闭。
使用 pause 命令,我已经能够查明我收到错误消息的程序部分。这已在程序中进行了评论。
谁能帮我?我的语法有什么问题?