campbe13

SkeletonStripped.java

Feb 9th, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.97 KB | None | 0 0
  1. // remove line or change packageName to reflect your directory structure
  2. // package packageName;  
  3. // needed if using Scanner
  4. import java.util.Scanner;
  5. /**
  6.  * This class may be used to write your own  Java application class
  7.  * 1. change this comment, explain your class and its purpose
  8.       put your name in @author
  9.       put todays date in @version
  10.  * 2. change the package name  or remove it
  11.  * 3. change the class name and save the file
  12.  * 4. add your own constants
  13.  * 5. add your own variables
  14.  * 6. add your own code
  15.  * @author P.M.Campbell
  16.  * @version today
  17.  **/
  18. // class name in title case first word begins with capital letter
  19. public class SkeletonStripped
  20. {
  21.    public static void main(String[] args)
  22.    {
  23.    // constants first, if any ALLCAPS_AND_UNDERSCORES
  24.    final int REG_HOURS = 40;
  25.  
  26.    // variables next, in camelCase first word always lower case
  27.    Scanner kb = new Scanner(System.in);
  28.    int myVariable;
  29.    
  30.    // your logic goes here
  31.    
  32.    }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment