Skip to main content

Posts

Showing posts from April, 2009

Bowling With Friends In Fremont

Last week I went to bowling with my friends in Fremont and we enjoyed it a lot. I paid on behalf of them for the game so that everyone else pay me back later. Despite their repeated query to know how much they should pay me, I was too busy the whole last week to calculate that. Right now, having a little relax time, so I downloaded JDK 6 in my new laptop from office and wrote the small java program to calculate it. Compile and run the program to know how much I owe to each of them. /** * To compile: javac -d . BowlingCost.java * To run: java BowlingCost */ import java.util.Map; import java.util.HashMap; import java.util.Iterator; public class BowlingCost { public static final double shoeRent = 4.0; public static final double perGame = 4.25; private static int male = 5; private static int female = 4; private static Map payersMaritalStatus = new HashMap(); public BowlingCost() { payersMaritalStatus.put("Shahriar", Boolean.TRUE); ...