Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 11365 - !밀비 급일(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/11365
한 줄을 입력 받은 뒤, 이를 거꾸로 출력해주면 되는 문제였습니다.
자세한 것은 코드를 참고해주세요
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <queue>
#include <vector>
#include <cstring>
#include <cmath>
#define P pair<int, int>
#define F first
#define S second
#define INF 987654321
using namespace std;
char arr[501];
int main(){
cin.tie(0);
cout.tie(0);
while(1){
cin.getline(arr, 501);
if(arr[0] == 'E' && arr[1] == 'N' && arr[2] == 'D') break;
for(int i = strlen(arr) - 1; i >= 0; i--){
cout << arr[i];
}
cout << "\n";
}
return 0;
}
질문 및 조언은 댓글을 남겨주세요.
'백준' 카테고리의 다른 글
백준 4458 - 첫 글자를 대문자로(C++) (0) | 2023.05.14 |
---|---|
백준 10987 - 모음의 개수(C++) (0) | 2023.05.14 |
백준 1264 - 모음의 개수(C++) (0) | 2023.05.14 |
백준 2789 - 유학 금지(C++) (0) | 2023.05.10 |
백준 11945 - 뜨거운 붕어빵(C++) (0) | 2023.05.10 |