I think program should be like that:-
public class Commutors{
public static final long TOTAL_COMMUTORS = 12 * 60 * 60 * 1000 *
20 * 100;
public static final long CAR_COMMUTORS = 12 * 60 * 60 * 100 * 20
* 1;
public static void main(String[] args){
System.out.println("The ratio of Car commutors in total commutors
is "+
(TOTAL_COMMUTORS / CAR_COMMUTORS);
}
}
And answer should be 1000.
Yogesh//