Below is the syntax highlighted version of NameAge.java.
/*********************************************************************** * Name: * Login: * Precept: * * Inputs 2 command line arguments. Outputs sentence using them. * Example of difference between print() and println(). * * Compilation: javac NameAge.java * Execution: java NameAge name age * Dependencies: none * * > java NameAge Alice 19 * Alice is 19 years old. * ***********************************************************************/ public class NameAge { public static void main(String[] args) { } }