c++如何取出string中的第一个字符?
展开全部
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s;
char c;
cin >> s;
c = s.at(0);
cout << c << endl;
return 0;
}
#include <string>
using namespace std;
int main()
{
string s;
char c;
cin >> s;
c = s.at(0);
cout << c << endl;
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s="helloworld";
int index=0;
while(s[index]!='\0')
cout<<s[index++];
return 0;
}
#include <string>
using namespace std;
int main()
{
string s="helloworld";
int index=0;
while(s[index]!='\0')
cout<<s[index++];
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
c=s.str[0]
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
c=string[0]
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
c=s[0];
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询