added testing document
This commit is contained in:
parent
a9c5691dac
commit
b19efc6595
1 changed files with 15 additions and 0 deletions
15
src/xs_ibdpcompsci_javaintro/testpad.java
Normal file
15
src/xs_ibdpcompsci_javaintro/testpad.java
Normal 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);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue