(Display three messages) Write a program that displays Welcome to Java, Learning Java Now, and Programming is fun
belongs to book: Introduction to Java Programming, Comprehensive Version (10th Edition)|Y. Danial liang|10th edition| Chapter number:1| Question number:1
All Answers
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
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)