Copyright © tutorialspoint.com
How to write an array of strings to the output console ?
Following example demonstrates writing elements of an array to the output console through looping.
public class Welcome { public static void main(String[] args){ String[] greeting = new String[3]; greeting[0] = "This is the greeting"; greeting[1] = "for all the readers from"; greeting[2] = "Java Source ."; for (int i = 0; i < greeting.length; i++){ System.out.println(greeting[i]); } } } |
The above code sample will produce the following result.
This is the greeting For all the readers From Java source . |
Copyright © tutorialspoint.com