21-Sep-2018, 8:45 PM
package arraysstrings;
import java.util.Arrays;
public class ArraysStrings {
public static void main(String[] args) {
// Display the number 942
String[] aryString = new String[3];
aryString[0] = "9";
aryString[1] = "4";
aryString[2] = "2";
int i;
for (i = 0; i < aryString.length; i++){
System.out.println(aryString);
}
}
}
import java.util.Arrays;
public class ArraysStrings {
public static void main(String[] args) {
// Display the number 942
String[] aryString = new String[3];
aryString[0] = "9";
aryString[1] = "4";
aryString[2] = "2";
int i;
for (i = 0; i < aryString.length; i++){
System.out.println(aryString);
}
}
}
My CC1 levelset: https://forum.bitbusters.club/thread-493.html
My CC2 levelset: https://forum.bitbusters.club/thread-1174.html
Flash game I created- Block Manoeuvres: http://www.fastswf.com/2Ra-gvs
My CC2 levelset: https://forum.bitbusters.club/thread-1174.html
Flash game I created- Block Manoeuvres: http://www.fastswf.com/2Ra-gvs