public class HelloWorld{
public static void main(String args[]){
int i=0;
String greeting[]={
"HelloWorld!",
"No,I mean it!",
"HELLO WORLD!!"
};
while(i<4){
System.out.println(greeting[i]);
i++;
}
}
}
public class HelloWorld{
public static void main(String args[]){
int i=0;
String greeting[]={
"HelloWorld!",
"No,I mean it!",
"HELLO WORLD!!"
};
while(i<4){
System.out.println(greeting[i]);
i++;
}
}
}