You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System.out.print("Hello. So you want to board your dog, but first i will need a little bit of information?\nFirstly how much weights(pounds) your dog: ");
dogWeight= input.nextFloat();
System.out.print("And secondly, for how many days you want it to be boarded?: ");days=input.nextByte();
System.out.print("OK, that will cost you $" + COST_PER_POUND*dogWeight*days);