"C++ 문자열 뒤집기"의 두 판 사이의 차이

(새 문서: ==개요== ;C++ 문자열 뒤집기 <source lang='c'> #include <iostream> #include <bits/stdc++.h> using namespace std; int main() { string s = "hello"; reverse(s.begin(), s...)
 
14번째 줄: 14번째 줄:


==같이 보기==
==같이 보기==
* [[C언어 문자열 뒤집기]]
* [[함수 StringReverse()]]
* [[함수 StringReverse()]]


[[분류: C++ 문자열]]
[[분류: C++ 문자열]]

2019년 7월 16일 (화) 22:31 판

1 개요

C++ 문자열 뒤집기
#include <iostream>
#include <bits/stdc++.h> 
using namespace std;
int main() {
    string s = "hello"; 
    reverse(s.begin(), s.end()); 
    cout << s;
    // olleh
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}