Codeforces 5B

本文探讨了在编程中解决复杂文本处理问题的技巧,特别关注于字符串操作和格式化输出。通过实例展示了如何高效地进行字符串匹配、分割、拼接等基本操作,并提供了实现这些操作的代码示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

这道题水,但是就是看不懂题意,加上输入不太会。反正奇数的话,一次取下整,一次取上整,轮着来。

     __debug大爷说我肯定做不出来,果然没做出来,%%%__debug

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<string>
#include<iostream>
#include<algorithm>
#define sys system("pause")
const int MAXN=1001;
using namespace std;
string s[MAXN];
int main()
{
    int i=0,maxlen=0;
    while(getline(cin,s[i++]))
    {
        maxlen=max(maxlen,(int)s[i-1].size());
    }
    string first(maxlen+2,'*');
    cout<<first<<endl;
    bool flag=true;
    for(int j=0;j<i-1;j++)
    {
        printf("*");
        int len=maxlen-s[j].size();
        string front(len/2,' '),back(len/2,' ');
        if(len&1)
        {
            if(!flag)
            {
                front+=' ';
                cout<<front;
                cout<<s[j];
                cout<<back;
                flag=1;
            }
            else
            {
                back+=' ';
                cout<<front;
                cout<<s[j];
                cout<<back;
                flag=0;
            }
        }
        else
        {
            cout<<front;
            cout<<s[j];
            cout<<back;
        }
        printf("*\n");
    }
    cout<<first;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值