3个回答
展开全部
结尾很麻烦,以前也写过这个程序,最后没有办法,以输入"end"结尾,字符串里包括"end"不会结尾,也就是说可以定义名为end的变量
#include
#include
#include
using
namespace
std;
int
main()
{
vector
s;
string
str;
char
temp[256];
while(1)
{
cin.getline(temp,255);
str
=
temp;
if(str
==
"end")
break;
s.push_back(str);
}
cout
<<
endl;
for(vector
::size_type
pos
=
0;
pos
!=
s.size();
pos++)
cout
<<
s[pos]
<<
endl;
return
0;
}
#include
#include
#include
using
namespace
std;
int
main()
{
vector
s;
string
str;
char
temp[256];
while(1)
{
cin.getline(temp,255);
str
=
temp;
if(str
==
"end")
break;
s.push_back(str);
}
cout
<<
endl;
for(vector
::size_type
pos
=
0;
pos
!=
s.size();
pos++)
cout
<<
s[pos]
<<
endl;
return
0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你好的, 字符串赋值,有个函数strcpy(str1,str2);把字符串str2赋值给字符串str1;你调用这个函数要引入头文件:#include <string.h>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以,只要将其数据类型定义清楚就行,比如说字符型,char
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询