// Package Declaration -- says where the file should be
|
|
package uwstout.courses.cs144.examples;
|
|
|
|
// <visibility> class <name> { }
|
|
/**
|
|
* This is the primary entry point into our program
|
|
*
|
|
* @author Brett Bender
|
|
* @version 2022.9.15
|
|
*
|
|
*/
|
|
public class Example {
|
|
// add code here
|
|
|
|
/**
|
|
* Provides the primary entry point into the program
|
|
*
|
|
* @param args Command line arguments
|
|
*/
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello, World!");
|
|
|
|
// The answer is 42.
|
|
System.out.printf("The answer is %d.\n", 42);
|
|
|
|
System.out.println("Name\tAge\nBilly\t15");
|
|
}
|
|
|
|
}
|