Thursday, March 31, 2016

Exercise 1.1

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

My Solution:


public class Ex_one_pt_one {

/*
Author: Brooks Robinson
Problem: (Display three messages) Write a program that displays Welcome to Java,
Welcome to Computer Science, and Programming is fun.
*/
public static void main(String[] args) {

// output given strings
System.out.println("Welcome to Java");
System.out.println("Welcome to Computer Science");
System.out.println("Programming is fun");

} //end of main


} // end of class



No comments:

Post a Comment