알고리즘/SW Expert Academy
[D3] 5356. 의석이의 세로로 말해요
혬혬
2019. 10. 6. 10:57
728x90
#include <iostream>
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
int main(void) {
int test_case = 0;
scanf("%d", &test_case);
for (int i = 0; i < test_case; i++) {
char words[5][16] = { 0 };
for (int j = 0; j < 5; j++) {
scanf("%s", &words[j]);
}
printf("#%d ", i + 1);
for (int n = 0;n<16; n++) {
for (int m = 0; m < 5; m++) {
if (words[m][n] == '\0')
continue;
printf("%c", words[m][n]);
}
}
printf("\n");
}
return 0;
}
728x90