Note: this is a template for an example Java assignment for the CSTA Conference.
In this assignment you'll work with outputting text to stdout
(or Standard Out) and getting input from stdin
(or Standard In). Try to complete the assignment, commit your changes and see if they worked!
-
In
Hello.java
change the output to be "Hello world!" -
In
HelloName.java
ask the user for their name and then say hello to them.
Code well!
javac *.java
java -cp . [function name]