added testing document

This commit is contained in:
buzz-lightsnack-2007 2024-01-19 11:01:54 +08:00
parent a9c5691dac
commit b19efc6595

View file

@ -0,0 +1,15 @@
package xs_ibdpcompsci_javaintro;
public class testpad {
public static void main(String[] args) {
//Arrays
String[][] KPOP = {{"NAYEON", "JEONGYEON", "MOMO", "SANA", "JIHYO", "MINA", "DAHYUN", "CHAEYOUNG", "TZUYU"}};
for (String[] KPOP_MEMBERS : KPOP) {
for (String PERSONA : KPOP_MEMBERS) {
System.out.println(PERSONA);
}
}
}
}