C++中怎么才能不限制输入数据的个数?有具体程序,求大神
就是想自己输入一串没有限定数字的字符,把hello改为自己输入#include<iostream>usingnamespacestd;voidstrLength(char...
就是想自己输入一串没有限定数字的字符,把hello改为自己输入
#include<iostream>
using namespace std;
void strLength(char*s);
int main()
{
char s[]="Hello";
strLength(s);
return 0;
}
void strLength(char*s)
{
int i;
for(i=0;s[i]!='\0';++i)
{
;
}
cout<<i<<endl;
} 展开
#include<iostream>
using namespace std;
void strLength(char*s);
int main()
{
char s[]="Hello";
strLength(s);
return 0;
}
void strLength(char*s)
{
int i;
for(i=0;s[i]!='\0';++i)
{
;
}
cout<<i<<endl;
} 展开
4个回答
展开全部
C++里面的话可以使用string变量,是不限制输入长度输入字符的;其实还可以使用链表,每输入一个变量就创建一个节点加入到链表当中就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-03-26
展开全部
艹std::string。反正最终还是会受到存储空间的限制。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str;
cout << "please input the str: " << endl;
cin >> str;
cout << "The size of str is " << str.length() << " characters.\n";
return 0;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询