From 8a96790c9be29f36760c3008eebc45b84647e0e4 Mon Sep 17 00:00:00 2001 From: MSeibert97 Date: Tue, 16 Jul 2019 11:03:07 +0200 Subject: [PATCH] Der vierte commit. Der BMI Wert wird nun durch ein PopUp Fenster angezeigt und nicht mehr durch die Konsole. --- .idea/workspace.xml | 46 +++++++++++++++++++++++++----------------- src/FitnessTest_M.java | 5 ++++- 2 files changed, 32 insertions(+), 19 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 63b178c..9617c18 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -3,6 +3,7 @@ + @@ -423,6 +431,7 @@ + @@ -511,7 +520,8 @@ - @@ -599,16 +609,16 @@ - - + + - - - - - - + + + + + + diff --git a/src/FitnessTest_M.java b/src/FitnessTest_M.java index dabc4fd..c6e0b04 100644 --- a/src/FitnessTest_M.java +++ b/src/FitnessTest_M.java @@ -109,7 +109,10 @@ public class FitnessTest_M extends JFrame { float height = Float.parseFloat(height_tf.getText()); float weight = Float.parseFloat(weight_tf.getText()); int bmi = (int) (weight / (height*height)); - System.out.println(bmi); + JOptionPane.showMessageDialog(null, + "Ihr BMI: " + bmi, + "Ergebnis", + JOptionPane.WARNING_MESSAGE); } } });