Programming Basics


Program: Welcome.java

Write a Java program named Welcome.java. The program is to display the following message in the console window: Welcome to Java!

Algorithm
Solution
Output
Video

Program: DataValues.java

Write a Java program named DataValues.java. The program is to demonstrate a few examples of data storage and processing. The program is to declare variables of various data types, assign values to the variables, perform math operations on the data stored within the variables and display the results.

The Problem Statement
Algorithm
Solution
Output
Video

Program: TimeCalculator.java

Write a Java program that prompts the user to enter a number of seconds. The program is to output the total number of seconds entered by the user as days, hours, minutes and remaining seconds.

The Problem Statement
Algorithm
Solution
Output
Video - Problem Considerations (no code)
Video - Coding the Solution