Write a simple Java application which calculates the power dissipation in a simple circuit. Your application should ask the user to enter the voltage and resistance values of the circuit. You must use the Scanner class to collect the user's input. The voltage and resistance values should be treated as floating point values. Calculate the power: power = voltage * voltage / resistance. You must use a JOptionPane to output the result. Your output must show three digits after the decimal point. Make sure you remember to import what your program will use.