欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

#蓝桥杯练习#字符串的输入输出处理

程序员文章站 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;
    }
}


相关标签: 编程刷题