summaryrefslogtreecommitdiffstats
path: root/Java/NoDaisys.java
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2023-01-14 05:31:48 -0600
committermsglm <msglm@techchud.xyz>2023-01-14 05:31:48 -0600
commit9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch)
treeeb1efc1d028b949dd83bb710c68be8eff58f26e7 /Java/NoDaisys.java
downloadschool-code-master.tar.gz
school-code-master.tar.bz2
school-code-master.zip
Inital CommitHEADmaster
Diffstat (limited to 'Java/NoDaisys.java')
-rw-r--r--Java/NoDaisys.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/Java/NoDaisys.java b/Java/NoDaisys.java
new file mode 100644
index 0000000..be50ffe
--- /dev/null
+++ b/Java/NoDaisys.java
@@ -0,0 +1,13 @@
+class NoDaisys{
+public static void main (String str[]){
+String movies [] = new String [5];
+
+movies [0] = "Creatue from the black lagoon";
+movies [2] = "Dont Eat the dasies";
+
+for(int i =0; i < movies.length; i++)
+{
+System.out.println(movies[i]);
+}
+}
+}