Hardcopy Mod9

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

JOptionPane Class

import javax.swing.JOptionPane;
import java.lang.Double.*;
public class WeightProblem_DOMANOG
{
public static void main(String[] args)
{
String input;

input = JOptionPane.showInputDialog("Enter weight of a person in kilograms: ");

double weightKg = Double.parseDouble(input);

double weightPounds= weightKg*2.2;

JOptionPane.showMessageDialog(null, "Weight in Pounds = " + weightPounds);


}
}

You might also like