wiley_pastebin

Constants 1

Mar 18th, 2019
2,101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. public class Contract {
  2.  //...
  3.  
  4.  public static final double HOURS_PER_WEEK = 37.5;
  5.  
  6.  public double getWeeksLeft(){
  7.   return this.hoursLeft / Contract.HOURS_PER_WEEK;
  8.  }
  9.  
  10.  //...
  11. }
Advertisement
Add Comment
Please, Sign In to add comment