No Rules Rules

세로읽기 (feat. 백준, 10798번) 본문

생활/코테

세로읽기 (feat. 백준, 10798번)

개발하는 완두콩 2023. 2. 1. 17:09
728x90
반응형

세로읽기
https://www.acmicpc.net/problem/10798

 

10798번: 세로읽기

총 다섯줄의 입력이 주어진다. 각 줄에는 최소 1개, 최대 15개의 글자들이 빈칸 없이 연속으로 주어진다. 주어지는 글자는 영어 대문자 ‘A’부터 ‘Z’, 영어 소문자 ‘a’부터 ‘z’, 숫자 ‘0’

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main() {
    ios::sync_with_stdio(false), cin.tie(NULL);
    string str[5];
    for(register int i = 0; i < 5; ++i)
        cin >> str[i];
    for(register int i = 0, j; i < 15; ++i)
        for(j = 0; j < 5; ++j)
            if(i < str[j].size())
                cout << str[j].at(i);
	return 0;
}
// *&)*@*

 

반응형

문제에서 요구하는 방향으로 인덱스를 이동시키며 문자를 출력하는 문제입니다.

728x90
반응형
Comments