Q:

(Display three messages) Write a program that displays Welcome to Java, Learning Java Now, and Programming is fun

-1

(Display three messages) Write a program that displays Welcome to Java,Welcome to Computer Science, and Programming is fun.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

/* (Display three messages) Write a program that displays Welcome to Java,
   Welcome to Computer Science, and Programming is fun.
*/
public class Exercise_01_01 {
	public static void main(String[] args) {
		System.out.println("Welcome to Java");
		System.out.println("Welcome to Computer Science");
		System.out.println("Programming is fun");
	} 

need an explanation for this answer? contact us directly to get an explanation for this answer
need an explanation for this answer? contact us directly to get an explanation for this answer

/* (Display three messages) Write a program that displays Welcome to Java,
   Welcome to Computer Science, and Programming is fun.
*/
public class Exercise_01_01 {
	public static void main(String[] args) {
		System.out.println("Welcome to Java");
		System.out.println("Welcome to Computer Science");
		System.out.println("Programming is fun");
	}
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (2)

Similar questions


need a help?


find thousands of online teachers now