From b19efc659501e3e8f9920e183bd46ac1ceb6ee0a Mon Sep 17 00:00:00 2001 From: buzz-lightsnack-2007 <73412182+buzz-lightsnack-2007@users.noreply.github.com> Date: Fri, 19 Jan 2024 11:01:54 +0800 Subject: [PATCH] added testing document --- src/xs_ibdpcompsci_javaintro/testpad.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/xs_ibdpcompsci_javaintro/testpad.java diff --git a/src/xs_ibdpcompsci_javaintro/testpad.java b/src/xs_ibdpcompsci_javaintro/testpad.java new file mode 100644 index 0000000..32a702c --- /dev/null +++ b/src/xs_ibdpcompsci_javaintro/testpad.java @@ -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); + } + } + + } +}