编写C/C++程序时如何输入包含空格的字符串

2018-3-3

在C/C++中,传统的输入流scanf("%s",&str) 和cin>>str,遇到空格会返回空格之前的字符串。

1.C语言中,可以用gets函数来接收输入的字符串(包含空格)。

格式:gets(字符数组名);

功能:gets函数用于将输入的字符串内容存放到指定的字符数组中,输入结尾的换行符’\n’被换成’\0’存储在该数组中。

举例说明如下:

#include <iostream>
#include <cstdio> 
using namespace std;

const int N = 20;
char x[N+1]; 

int main(){
	gets(x);
	cout<<x<<endl;
	printf ("%s\n",x);
	return 0;
}

注:使用gets函数时,需要包含头文件#include<stdio.h>

2.scanf("%[^\n]]",str)

需要包含头文件#include<stdio.h>,这种方法需要对正则表达式有一定的理解,例如:scanf("%[a-z A-Z 0-9]",str)表示只匹配输入是大小写字母和数字。
这里应该是只能匹配带有换行符的字符串,那么我们在输入空格或者Tab键的时候我们就不停止输入,直到遇到换行符。

#include <iostream>
#include <cstdio> 
using namespace std;

const int N = 20;
char x[N+1]; 

int main(){
	scanf ("%[^\n]]",x);
	cout<<x<<endl;
	printf ("%s\n",x);
	return 0;
}

3.getline(cin,string str)

需要包含头文件#include<string>,因为getline是string类成员对象,例如string::getline,其中第一个参数要求是输入流对象的引用&istream.

#include <iostream>
using namespace std;

string s;

int main(){
	getline (cin,s);
	cout<<s<<endl;
	return 0;
}

如果需要转化为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 <iostream>
using namespace std;

const int N = 20;
char x[N+1];

int main(){
	cin.getline (x,N+1); //这里最好写N+1,因为字符串末尾的的'\0'也包含在这个长度之内.
	cout<<x<<endl;
	printf ("%s\n",x);
	return 0;
}

需要包含头文件#include<iostream>,因为这里的getline是输入流的成员对象,如:istream::getline.

http://acm.hdu.edu.cn/game/entry/problem/show.php?chapterid=1&sectionid=2&problemid=15

给一个题目试一下,很简单的,注意要加上getchar(),否则的话就会一直循环输出。

#include<iostream>
#include<cstring>
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<<s<<endl;
    }
    return 0;
}
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值