-
명품 C++ 4장 6번C++ 2018. 10. 30. 00:06
6. string 클래스를 이용하여 사용자가 입력한 영문 한 줄을 문자열로 입력받고 거꾸로 출력하는 프로그램을 작성하라.
소스코드
#include <iostream>using namespace std;#include <string>int main() {cout << "아래에 한 줄을 입력하세요. (exit를 입력하면 종료합니다.)" << endl;string text;for (;;) {cout << ">>";getline(cin, text);if (text == "exit") break;for (int i = text.length() - 1; i >= 0; --i)cout << text[i];cout << endl;}}실행결과
맨끝 인덱스 부터 처음 인덱스까지 한 글자씩 출력 하였습니다.
'C++' 카테고리의 다른 글
명품 C++ 4장 8번 (1) 2018.10.30 명품 C++ 4장 7번 (0) 2018.10.30 명품 C++ 4장 5번 (0) 2018.10.29 명품 C++ 4장 4번 (0) 2018.10.29 명품 C++ 4장 3번 (1) 2018.10.29