Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 9086 - 문자열(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/9086
문자열을 사용하는 간단한 문제입니다.
N개의 문자열을 입력받고, 문자열의 처음과 끝 문자를 출력하는 문제입니다.
String을 사용하면 쉽게 풀 수 있었습니다.
자세한 것은 코드를 참고해주세요
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstring>
#include <vector>
#include <algorithm>
#include <queue>
#include <cmath>
#include <cstdio>
#include <string>
#include <deque>
#include <stack>
#define LL long long
#define pp pair<int, int>
#define P pair<pp, pp>
#define F first
#define S second
#define INF 987654321
using namespace std;
int N;
int main() {
cin.tie(0);
cout.tie(0);
cin >> N;
for(int i = 1; i <= N; i++){
string arr;
cin >> arr;
cout << arr[0] << arr[arr.size()-1] << "\n";
}
return 0;
}
질문 및 조언은 댓글을 남겨주세요
'백준' 카테고리의 다른 글
백준 2143 - 두 배열의 합(C++) (0) | 2023.02.09 |
---|---|
백준 1562 - 계단 수(C++) (0) | 2023.02.08 |
백준 1194 - 달이 차오른다, 가자.(C++) (0) | 2023.02.07 |
백준 2098 - 외판원 순회(C++) (0) | 2023.02.04 |
백준 1202 - 보석 도둑(C++) (0) | 2023.02.04 |