Algorithm/BAEKJOON

[ C / C++ ] 백준 2711 오타맨 고창영

곽수진 2022. 3. 18. 18:36
반응형

문제

고창영은 맨날 오타를 낸다. 창영이가 오타를 낸 문장과 오타를 낸 위치가 주어졌을 때, 오타를 지운 문자열을 출력하는 프로그램을 작성하시오.

창영이는 오타를 반드시 1개만 낸다.

 

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>

int main() {

	char miss[81];
	int test_num;
	scanf("%d", &test_num);

	for (int i = 0; i < test_num; i++) {
		int space;
		scanf("%d%s", &space, miss);

		for (int j = 0; j < strlen(miss); j++) {
			if (j != space - 1)
				printf("%c", miss[j]);
		}
		printf("\n");
	}
	return 0;
}
반응형