(C++)string 的两种输入方式和输出方式
Posted CSU迦叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(C++)string 的两种输入方式和输出方式相关的知识,希望对你有一定的参考价值。
注:头文件如下
#include<string>
#include<cstdio>
#include<iostream>
using namespace std;
注:第一种输入方式遇到回车停止读入,第二种输入方式遇到空格停止读入。
两种读入方式也都可以用来读字符数组。
int main(){
string str1,str2;
printf("请任意输入两行话:\\n");
//读入方式1 遇到换行停止
getline(cin,str1);
//读入方式2 遇到空格停止
cin>>str2;
printf("下面是输出:\\n");
//输出方式1
printf("%s\\n",str1.c_str());
//输出方式2
cout<<str2<<endl;
return 0;
}
以上是关于(C++)string 的两种输入方式和输出方式的主要内容,如果未能解决你的问题,请参考以下文章