| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 133904 | 郝王骏程 | 统计特定单词数 | C++ | Compile Error | 0 MS | 0 KB | 605 | 2025-10-25 08:28:43 |
# include<iostream> # include<cstring> # include<cstring> using namespace std; int main(){ string a,b; getline(cin,b); getline(cin,a); int l=a.size(),l2=b.size(),cnt=0,t=0,i,j,q=a.find(b); j=a.find(b); for (i=0;i<l;i++){ if (a[i]>='A' && a[i]<='Z') a[i]=a[i]+32; } for (i=0;i<l2;i++){ if (b[i]>='A' && b[i]<='Z') b[i]=b[i]+32; } if (q!=-1){ while (q!=-1){ a.erase(q,l2); q=a.find(b); cnt++; } cout<<cnt<<" "<<j return 0 } cout<<q return 0 }
Main.cc: In function 'int main()':
Main.cc:26:8: error: expected ';' before 'return'
return 0
^
Main.cc:29:4: error: expected ';' before 'return'
return 0
^
Main.cc:9:37: warning: unused variable 't' [-Wunused-variable]
int l=a.size(),l2=b.size(),cnt=0,t=0,i,j,q=a.find(b);
^