杭电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;
} 展开
#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;
} 展开
2个回答
展开全部
水题都被你写成难题了,
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,
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,
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询