杭电ACM2017题我的程序有个错误,有谁能帮忙看看,谢谢了

#include<string>#include<vector>usingnamespacestd;intmain(){intn;cin>>n;vector<string... #include<string>
#include<vector>
using namespace std;
int main()
{
int n;
cin>>n;
vector<string>a;
vector<int>b;
string str;
for(int i=0;i<n;i++)
{
cin>>str;
a.push_back(str);
b.push_back(0);
}
for(int k=0;k<n;k++)
{
for(int j=0;j<a[k].length;j++)/*错误显示:
error C2297: '<' : illegal, right operand has type 'unsigned int (__thiscall std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >::*'
Error executing cl.exe.*/

{
if(a[k][j]>='0'&&a[k][j]<='9')
b[k]++;
}
cout<<b[k]<<endl;
}
return 0;
}
展开
 我来答
451006071
2012-07-19 · TA获得超过1332个赞
知道小有建树答主
回答量:368
采纳率:57%
帮助的人:324万
展开全部
水题都被你写成难题了,
1.这是我的给你的参考程序,已经AC了我测试过
#include <iostream>
#include <string>
using namespace std;
int main()
{
int nTest;

cin>>nTest;
while(nTest--)
{
int sum=0;
string str;

cin>>str;
for(int i=0;i<str.length();i++)
if((str.at(i))<='9'&&str.at(i)>='0') sum++;
cout<<sum<<endl;
}
return 0;
}

2.你程序的错误
那个长度的判断,length要加对括号,a[k].length(),看到你用向量+string被你吓到了
还有你的程序要加上#include<iostream>,不然你提交程序的时候说找不到cout,
笃侠6A
2012-07-18 · TA获得超过3734个赞
知道大有可为答主
回答量:3205
采纳率:75%
帮助的人:3224万
展开全部

a[k].length
改为
a[k].length()
试试
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式