PoundstoKilograms.java
public class PoundstoKilograms {
public static void main(String[] args) {
String title = new String("Weight conversion");
String label1 = new String("Pounds");
String label2 = new String("Kilograms");
PoundstoKilogramsGUI converter = new PoundstoKilogramsGUI(title,
label1, label2);
converter.display();
}
}

0 Comments:
Post a Comment
<< Home