#蓝桥杯练习#字符串的输入输出处理 程序员文章站 2022-04-30 18:28:53 ... 字符串的输入输出处理 #include <bits/stdc++.h> using namespace std; int main() { //freopen("in.txt","r",stdin); int a = 0; int n; scanf("%d", &n); getchar(); char s[1001]; while(a < n) { cin. getline(s,1001); cout<<s<<endl<<endl; a++; } while(cin>>s) { cout<<s<<endl; cout<<endl; } } 相关标签: 编程刷题 上一篇: poi生成word文档,包含插入表格 下一篇: C语言基础之字符串输入输出 推荐阅读 蓝桥杯基础练习(数列排序+特殊回文数+回文数+特殊的数字) 蓝桥杯之VIP试题 FJ的字符串 蓝桥杯字符集处理 -字符串 蓝桥杯练习 《阶乘计算》如何处理大数乘法 #蓝桥杯练习#字符串的输入输出处理