C++怎么输入字符串?
#include<iostream>usingnamespacestd;#defineNULL0voidmain(){char*a;cin>>a;cout<<a<<end...
#include <iostream>
using namespace std;
#define NULL 0
void main()
{
char *a;
cin>>a;
cout<<a<<endl;
} 展开
using namespace std;
#define NULL 0
void main()
{
char *a;
cin>>a;
cout<<a<<endl;
} 展开
5个回答
展开全部
scanf()读入char[]
使用方法:
char str[1024];
scanf("%[^\n]",&str);
getchar();
说明:在scanf函数中,可以使用%c来读取一个字符,使用%s读取一个字符串, 但是读取字符串时不忽略空格,读字符串时忽略开始的空格,并且读到空格为止,因此只能读取一个单词,而不是整行字符串。
扩展资料:
注意
如果要循环的多次从屏幕上读取一行的话,就要在读取一行后,在用%c读取一个字符,将输入缓冲区中的换行符给读出来。
否则的话,在下一次读取一行的时候,第一个就遇到'\n',匹配不成功就直接返回了。这里可以用scanf()或者getchar()函数读取换行符。
其实scanf函数也可完成这样的功能,而且还更强大。这里主要介绍一个参数,%[ ],这个参数的意义是读入一个字符集合。[ ]是个集合的标志,因此%[ ]特指读入此集合所限定的那些字符,比如%[A-Z]是输入大写字母,一旦遇到不在此集合的字符便停止。
如果集合的第一个字符是"^",这说明读取不在"^"后面集合的字符,既遇到"^"后面集合的字符便停止。注意此时读入的字符串是可以含有空格的,而且会把开头的空格也读进来。
展开全部
C语言_040_输入字符和字符串_上
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2020-02-03
展开全部
c++输入字符串方法:
#include<bits/stdc++.h>
using namespace std;
int main()
{
char a[100]; //字符串长度为100
cin>>a; //输入字符串“a”
cout<<a<<endl; //输出
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
char a[100]; //字符串长度为100
cin>>a; //输入字符串“a”
cout<<a<<endl; //输出
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
c++可以使用如下方式输入字符串:
方式一:
#include <iostream>
using namespace std;
void main()
{
char s[50];//字符数组,用于存放字符串的每一个字符
cout<<"Please input a string"<<endl;
cin>>s;
cout<<"The string you input is"<<s<<endl;
}
方式2:
#include <iostream>
using namespace std;
void main()
{
char s[50];//字符数组,用于存放字符串的每一个字符
cout<<"Please input a string"<<endl;
cin.get(s,50);//当输入是Enter键时,结束输入
cout<<"The string you input is:"<<s<<endl;
}
方式一:
#include <iostream>
using namespace std;
void main()
{
char s[50];//字符数组,用于存放字符串的每一个字符
cout<<"Please input a string"<<endl;
cin>>s;
cout<<"The string you input is"<<s<<endl;
}
方式2:
#include <iostream>
using namespace std;
void main()
{
char s[50];//字符数组,用于存放字符串的每一个字符
cout<<"Please input a string"<<endl;
cin.get(s,50);//当输入是Enter键时,结束输入
cout<<"The string you input is:"<<s<<endl;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2018-04-16
展开全部
gets(字符串); 或
scanf("%s\n",字符串);
scanf("%s\n",字符串);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询