The program below is the answer to Liang’s Introduction To Java Programming (9th Edition) Chapter 1 Exercise 1.1.
Question: Write a program that displays Welcome to Java, Welcome to Computer Science, and Programming is fun.
1 2 |
/**<br /> *<br /> * @Author: Aghatise Osazuwa<br /> * Website: www.cscprogrammingtutorials.com<br /> *<br /> * Exercise 1.1 - Display Three Messages<br /> *<br /> */ <br /><br />public class Ex01_01 {<br /><br /> public static void main(String[] args) {<br /><br /> System.out.println("Welcome to Java");<br /> System.out.println("Welcome to Computer Science");<br /> System.out.println("Programming is fun.");<br /><br /> }<br />}<br /> |
Click here to see other solutions to Introduction to Java Programming.