이 기사에서는 문자열의 각 문자를 반복하는 방법을 이해할 것입니다. 문자열은 하나 이상의 문자를 포함하고 큰따옴표(" ")로 묶인 데이터 유형입니다. Char는 알파벳, 정수 또는 특수 문자를 포함하는 데이터 유형입니다.
아래는 동일한 데모입니다 -
입력이 다음과 같다고 가정 -
The string is defined as: Java Program
원하는 출력은 -
The characters in the string are: J, a, v, a, , P, r, o, g, r, a, m,
알고리즘
Step 1 - START Step 2 - Declare a string namely input_string, a char namely temp. Step 3 - Define the values. Step 4 - Iterate over the string, print each character at index ‘i’ of the string along with a blank space. Step 5 - Display the result Step 6 - Stop
예시 1
여기, for 루프입니다.
public class Characters { public static void main(String[] args) { String input_string = "Java Program"; System.out.println("The string is defined as: " +input_string); System.out.println("The characters in the string are: "); for(int i = 0; i<input_string.length(); i++) { char temp = input_string.charAt(i); System.out.print(temp + ", "); } } }
출력
The string is defined as: Java Program The characters in the string are: J, a, v, a, , P, r, o, g, r, a, m,
예시 2
여기 for-each 루프가 있습니다.
public class Main { public static void main(String[] args) { String input_string = "Java Program"; System.out.println("The string is defined as: " +input_string); System.out.println("The characters in the string are: "); for(char temp : input_string.toCharArray()) { System.out.print(temp + ", "); } } }
출력
The string is defined as: Java Program The characters in the string are: J, a, v, a, , P, r, o, g, r, a, m,