इस लेख में, हम समझेंगे कि स्ट्रिंग के प्रत्येक वर्ण के माध्यम से पुनरावृति कैसे करें। स्ट्रिंग एक डेटाटाइप है जिसमें एक या अधिक वर्ण होते हैं और दोहरे उद्धरण चिह्नों ("") में संलग्न होते हैं। चार एक डेटाटाइप है जिसमें एक वर्णमाला या एक पूर्णांक या एक विशेष वर्ण होता है।
नीचे उसी का एक प्रदर्शन है -
मान लीजिए कि हमारा इनपुट है -
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
यहाँ, फॉर-लूप।
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
यहाँ, प्रत्येक लूप के लिए।
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,