标签:style 输入 一个 mic c语言 return pen tchar lazy
类型:字符串
思路:前n行用getilne(),或者gets() 读取数据。
剩下的用cin,或者scnaf() 读取数据;当读取到空格时表示一个字符串的结束。
getchar():消去回车符。
AC代码:
1 #include<iostream> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 const int MAX_N=110; 6 int main() 7 { 8 int n; 9 cin>>n; 10 getchar(); 11 string s; 12 for(int i=0; i<n; i++) 13 { 14 getline(cin,s); 15 cout<<s<<endl<<endl; 16 } 17 while(cin>>s) 18 { 19 cout<<s<<endl<<endl; 20 } 21 return 0; 22 }
标签:style 输入 一个 mic c语言 return pen tchar lazy
原文地址:https://www.cnblogs.com/lvyi-19325/p/13399269.html