如题
#include<bits/stdc++.h>
using namespace std;
int main(){
string s;
cin>>s;
if(s=="SHELVE")
goto to_1;
string qwq,now;
getline(cin,qwq);
int l=qwq.find('"'),r=qwq.find_last_of('"');
to_1:;
}
此段代码运行时goto会报错,为什么呢?