int array from string array code example
Example 1: how to convert string to array in java
How to convert string to array
import java.util.*;
public class GFG {
public static void main(String args[])
{
String str = "GeeksForGeeks";
char[] ch = str.toCharArray();
for (char c : ch) {
System.out.println(c);
}
}
}
Example 2: how to put a string in an array parameter java
public class Test {
public static void main(String[] args) {
final int NUMBER_OF_LOCKER = 100;
boolean[] lockers = new boolean[NUMBER_OF_LOCKER];
for (int j = 1; j <= NUMBER_OF_LOCKER; j++) {
for (int i = j - 1; i < NUMBER_OF_LOCKER; i += j) {
lockers[i] = !lockers[i];
}
}
for (int i = 0; i < NUMBER_OF_LOCKER; i++) {
if (lockers[i])
System.out.println("Locker " + (i + 1) + " is open");
}
}
}