L1-039 古風排版 (20分)【字串處理】

moumoumouwang發表於2020-10-25

原題連結
思路:修正字串 掃描字串 按對四取餘為下標分類 開陣列儲存 倒著輸出就ok

#include <bits/stdc++.h>

using namespace std;

string str;
int main()
{
    int n;
    cin >> n;
    getchar();
    string str;
    getline(cin, str);
    int flen = str.length(); //初始字串長度
    int lie;
    if(flen % n == 0) lie = flen / n;
    else
    {
        lie = (flen / n) + 1;
        while(str.length() < lie * n)
        {
            str +=" ";//修正字串
        }
    }
    int len = str.length();
    vector<vector<char>> a(n + 1);
    for(int i = 0; i < len; i++)
    {
        a[i % n].push_back(str[i]);
    }
    for(int i = 0; i < n; i++)
    {
        int s = a[i].size();
        for(int j = s - 1; j >= 0; j--)
        {
            cout << a[i][j];
        }
        cout << endl;
    }
}

相關文章