Problem 1.1
Write a program that displays Welcome
to Java,
Welcome to Computer Science, and Programming is fun.
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