본문 바로가기

Algorithm/String

(C++) - 백준(BOJ) 8545번 : Zadanie próbne

반응형

https://www.acmicpc.net/problem/8545

 

8545번: Zadanie próbne

Napisz program, który odwraca podane słowo trzyliterowe.

www.acmicpc.net

눈치껏(?) 문자열 문제였습니다.

 

 

 

📕 Code

#include <bits/stdc++.h>
using namespace std;
string s;
int main(){
    cin >> s;
    for(int i = s.size() - 1; i >= 0; i--) cout << s[i];
}