HDU 4813 Hard Code(2013长春)

本题是一道水题,是亚洲区2013年长春站的一道题目,就是按照要求将字符串分割

下面附上AC代码:

这里写代码片#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;

int main()
{
    int t,n,m;
    string a;
    cin>>t;
    while(t--)
    {
        cin>>n>>m;
        cin>>a;
        int f=0;
        for(int i=0;i<n;i++)
        {
            for(int j=0;j<m;j++)
            {
                cout<<a[f];
                f++;
            }
            cout<<endl;
        }
    }
    return 0;
} 

你可能感兴趣的:(HDU 4813 Hard Code(2013长春))