Monday, 30 October 2017

java basic program with solution



Problem 1.1
                   Write a program that displays Welcome to Java, Welcome to Computer Science, and Programming is fun.

Description: By using simple System.out.println(); statement it can be displayed.

Solution:
 public class Message {
    public static void main(String[] args) {
               System.out.println("Welcome to Java,\n" +
"Welcome to Computer Science, and Programming is fun");
    }
}
Output
               


No comments:

Post a Comment