题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4813
签到题。
把一个字符串按照格式输出就可以了,很水
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <queue>
#include <map>
#include <set>
#include <vector>
#include <string>
#include <math.h>
using namespace std;
int main()
{
//freopen("in.txt","r",stdin);
//freopen("out.txt","w",stdout);
int T,n,m,p;
char str[];
scanf("%d",&T);
while(T--){
scanf("%d %d",&n,&m);
scanf("%s",str);
p = ;
for(int i = ;i < n; i ++)
{
for(int j = ; j < m; j ++)
cout<<str[p++];
cout << endl;
}
} return ;
}