Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // remove line or change packageName to reflect your directory structure
- // package packageName;
- // needed if using Scanner
- import java.util.Scanner;
- /**
- * This class may be used to write your own Java application class
- * 1. change this comment, explain your class and its purpose
- put your name in @author
- put todays date in @version
- * 2. change the package name or remove it
- * 3. change the class name and save the file
- * 4. add your own constants
- * 5. add your own variables
- * 6. add your own code
- * @author P.M.Campbell
- * @version today
- **/
- // class name in title case first word begins with capital letter
- public class SkeletonStripped
- {
- public static void main(String[] args)
- {
- // constants first, if any ALLCAPS_AND_UNDERSCORES
- final int REG_HOURS = 40;
- // variables next, in camelCase first word always lower case
- Scanner kb = new Scanner(System.in);
- int myVariable;
- // your logic goes here
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment