diff options
author | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
commit | 9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch) | |
tree | eb1efc1d028b949dd83bb710c68be8eff58f26e7 /Java/NoDaisys.java | |
download | school-code-master.tar.gz school-code-master.tar.bz2 school-code-master.zip |
Diffstat (limited to 'Java/NoDaisys.java')
-rw-r--r-- | Java/NoDaisys.java | 13 |
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]); +} +} +} |