HarryDulaney/intro-to-java-programming

Repository files navigation

header-img-book-cover


"Daniel Liang teaches concepts of problem-solving and object-oriented programming using a fundamentals-first approach . Beginning programmers learn critical problem-solving techniques then move on to grasp the key concepts of object-oriented, GUI programming, advanced GUI and Web programming using Java..."



package ch_01;

/**
 * 1.1 (Display three messages) Write a program that displays Welcome to Java,
 * Welcome to Computer Science, and Programming is fun.
 */
public class Exercise01_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");
    }

}
  • When to use Pull Requests

    • To add new solutions, that do not already exist.
    • To add new documentation and/or comments to existing exercise solutions.
  • How to use Pull Requests

    1. Fork the Master branch
    2. Create a feature branch (with a descriptive name) using the fork from step 1.
    3. Make your changes to your new branch (Only commit and push the files you plan to merge).
    4. Make a Pull Request into our intro-to-java-programming Master branch.
  • Please feel free to open new Issues.
    • To request a specific Exercise that you need answered.
      • Be sure to include the Chapter and Exercise number.
    • To request a change to an existing solution.
    • You find an error in an existing solution.