summaryrefslogtreecommitdiffstats
path: root/Java/NoDaisys.java
blob: be50ffe1ac26aa19da455bf42a669fbfd0bf8c80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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]);
}
}
}