First of all, you can't switch doubles. In Java, you can only switch whole numbers (i.e. int). When trying to switch a double or a float or even a String you'll get errors. You can solve this by...