有关于C++string类与迭代器的问题求帮助!
题目:将text内容转成大写形式,然后输出他;#include<iostream>#include<vector>#include<string>usingnamespa...
题目:将text内容转成大写形式,然后输出他;
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main(){
string text="word is my world!";
string::iterator itstr;
for(itstr=text.begin() ; itstr!=text.end( ) && !itstr->empty( ) ; ++itstr){
*itstr=toupper(*itstr);
}
for(itstr=text.begin();itstr!=text.end() && !itstr->empty(); ++itstr){
cout<<*itstr;
}
}
我这个有这么两个错:
求帮助!! 展开
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main(){
string text="word is my world!";
string::iterator itstr;
for(itstr=text.begin() ; itstr!=text.end( ) && !itstr->empty( ) ; ++itstr){
*itstr=toupper(*itstr);
}
for(itstr=text.begin();itstr!=text.end() && !itstr->empty(); ++itstr){
cout<<*itstr;
}
}
我这个有这么两个错:
求帮助!! 展开
1个回答
展开全部
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main()
{
string text="word is my world!";
string::iterator itstr;
for(itstr=text.begin() ; itstr!=text.end( ); ++itstr)
{
*itstr=toupper(*itstr);
}
for(itstr=text.begin(); itstr!=text.end(); ++itstr)
{
cout<<*itstr;
}
}
这样就行了
#include<vector>
#include<string>
using namespace std;
int main()
{
string text="word is my world!";
string::iterator itstr;
for(itstr=text.begin() ; itstr!=text.end( ); ++itstr)
{
*itstr=toupper(*itstr);
}
for(itstr=text.begin(); itstr!=text.end(); ++itstr)
{
cout<<*itstr;
}
}
这样就行了
追问
那如果我不想删除怎么办?
追答
string的迭代器itstr中没有empty()这个成员函数啊,你不得不删。。。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询