我使用gcc-make-run插件来跑,发现有些程序没法运行,例如
代码:
#include<iostream>
#include<stack>
using namespace std;
stack<int> st;
int n,f[200010],cnt;
int main()
{
cin>>n;
for(int i=1;i<=n;i++)
{
int t;
cin>>t;
if(t==0)
{
int x;
cin>>x;
++cnt;
f[cnt]=max(f[cnt-1],x);
}
else if(t==1&&cnt!=0)cnt--;
else if(t==2)cout<<f[i]<<endl;
}
return 0;
}
然后我又打了一个a+b,但是又可以运行