2018-3-3
在C/C++中,传统的输入流scanf("%s",&str) 和cin>>str,遇到空格会返回空格之前的字符串。
1.C语言中,可以用gets函数来接收输入的字符串(包含空格)。
格式:gets(字符数组名);
功能:gets函数用于将输入的字符串内容存放到指定的字符数组中,输入结尾的换行符’\n’被换成’\0’存储在该数组中。
举例说明如下:
#include
#include
using namespace std;
const int N = 20;
char x[N+1];
int main(){
gets(x);
cout<
注:使用gets函数时,需要包含头文件#include
2.scanf("%[^\n]]",str)
需要包含头文件#include
这里应该是只能匹配带有换行符的字符串,那么我们在输入空格或者Tab键的时候我们就不停止输入,直到遇到换行符。
#include
#include
using namespace std;
const int N = 20;
char x[N+1];
int main(){
scanf ("%[^\n]]",x);
cout<
3.getline(cin,string str)
需要包含头文件#include
#include
using namespace std;
string s;
int main(){
getline (cin,s);
cout<
如果需要转化为char*,在C++中string封装了字符串的操作,总结一下,把string转化为字符数组或指针有一下三种方式:
(1)c_str()
string str="hi,girls!";
char *p=str.c_str();
(2)data()
string str="hello";
char *p=str.data();
(3)copy(p,len,start)
string str="howareyou";
char pStr[40];
str.copy(pStr,7,0); //7代表复制几个字符,0代表复制的位置
*(pStr+7)='\0'; //手动加上结束符
4.cin.getline(char *str, int maxnum)
#include
using namespace std;
const int N = 20;
char x[N+1];
int main(){
cin.getline (x,N+1); //这里最好写N+1,因为字符串末尾的的'\0'也包含在这个长度之内.
cout<
需要包含头文件#include
http://acm.hdu.edu.cn/game/entry/problem/show.php?chapterid=1§ionid=2&problemid=15
给一个题目试一下,很简单的,注意要加上getchar(),否则的话就会一直循环输出。
#include
#include
using namespace std;
const int N = 255;
int s,i;
char x[N+1];
int main(){
while (scanf("%[^\n]]",x)!=EOF){
getchar();
s=0;
if (!strcmp(x,"#")){
break;
}
for (int i=0;x[i]!='\0';i++){
if (x[i]!=' ') s+=(x[i]-'A'+1)*(i+1);
}
cout<