Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package vacationprice;
- /**
- *
- * @author j
- */
- public class calculateVacationPrice
- {
- static int mealPrice = 8;
- static int weeklyPrice = 1000;
- public static double calculateVacationPrice(int weeksOnVacation, int peopleNum, int mealsNum)
- {
- double vacationPrice = (weeksOnVacation * peopleNum * weeklyPrice)+ (mealsNum*8);
- return vacationPrice;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment