QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#772957 | #1795. Beer Can Game | I_be_wanna | Compile Error | / | / | C++17 | 203b | 2024-11-22 23:10:20 | 2024-11-22 23:10:25 |
Judging History
answer
#include<iostream>
using namespace std;
int main(){
char n[93838989];
int l;
for(int i=0;i<93838989;i++){
cin>>n[i];
}
if(n[i]=='a'){
l=4;
}else{
l=0;
}
cout<<l;
return 0;
}
详细
answer.code: In function ‘int main()’: answer.code:9:14: error: ‘i’ was not declared in this scope 9 | if(n[i]=='a'){ | ^