여기 이 프로그램에서 우리는 C++에서 문자열의 각 문자를 반복하는 방법을 볼 것입니다. 각 문자를 반복하려면 0에서 시작하여 (문자열 길이 – 1) 루프를 사용할 수 있습니다. 문자에 액세스하기 위해 아래 첨자 연산자 "[ ]" 또는 문자열 객체의 at() 함수를 사용할 수 있습니다.
Input: A string “Hello World” Output: “Hello World”
알고리즘
Step 1: Get the string Step 2: Use R before string to make it raw string Step 3: End
예시 코드
#include<iostream> using namespace std; main() { string my_str = "Hello World"; for(int i = 0; i<my_str.length(); i++) { cout << my_str.at(i) << endl; //get character at position i } }
출력
H e l l o W o r l d