标签:class ++ 输入 gets turn col etc str name
#include<iostream> #include<cstdio> #include<string> using namespace std; int main() { /* //输入一个以回车符为结束符的字符串:方法1:需要#include<string> string a; getline(cin,a); cout<<a; */ /* //输入一个以回车符为结束符的字符串:方法2:需要#include<iostream> 或 #include<cstdio> char s[20]; gets(s); cout<<s; */ /* //输入一个以回车符为结束符的字符串:方法3:需要#include<iostream> 或 #include<cstdio> char ch,s[20]; int i=0; while((ch=getchar())!=‘\n‘) //注意, (ch=getchar())一定要有括号 { s[i++]=ch; //cout<<i; } s[i]=‘\0‘; cout<<s; */ return 0; }
c/c++ 以回车符为结束符的字符串输入 样例(getline, gets, getchar) by slj
标签:class ++ 输入 gets turn col etc str name
原文地址:https://www.cnblogs.com/StoneXie/p/9602590.html