gpt4 book ai didi

Java Swing实现简单的体重指数(BMI)计算器功能示例

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 30 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Java Swing实现简单的体重指数(BMI)计算器功能示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例讲述了Java Swing实现简单的体重指数(BMI)计算器功能。分享给大家供大家参考,具体如下:

BMI,Body Mass Index,身体质量指数,是用体重公斤数 除以 身高米数平方得出的,是目前国际上常用的衡量人体胖瘦程度以及是否健康的一个标准.

而本文通过运用Java Swing实现了一个简单的BMI计算器。虽然现在网页上也有相应的网页应用,但是能够做出这个计算器来,还是有点成就感的,希望自己以后做出更多比这个好的应用.

最终运行效果:

Java Swing实现简单的体重指数(BMI)计算器功能示例

功能:可以选择三个标准:中国、亚洲、WHO,计算结果稍有不同 。

计算公式:BMI = weight / (height*height)   即 体重公斤数 除以 身高米数平方 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package WeightIndex;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
import java.awt.*;
import java.awt.event.*;
import java.text.DecimalFormat;
import java.util.regex.*;
public class WeightIndex extends JFrame {
  /**
   *
   */
  private static final long serialVersionUID = 1L;
  private JPanel contentPane;
  private JLabel titleLabel;
  private JPanel contentPanel;
  private JButton submitButton;
  private ButtonGroup bg;
  private JPanel sexPanel;
  private JRadioButton ChinaRadio;
  private JRadioButton AsiaRadio;
  private JRadioButton WHORadio;
  private JPanel whPanel;
  private JLabel heightLabel;
  private JLabel weightLabel;
  private JTextField heightText;
  private JTextField weightText;
  private JPanel consolePanel;
  private JLabel consoleLabel;
  private JTextField consoleText;
  private double weight;
  private double height;
  private double BMI;
  /**
   * Launch the application.
   */
  public static void main(String[] args) {
   EventQueue.invokeLater( new Runnable() {
    public void run() {
     try {
      WeightIndex frame = new WeightIndex();
      frame.pack();
      frame.setVisible( true );
     } catch (Exception e) {
      e.printStackTrace();
     }
    }
   });
  }
  /**
   * Create the frame.
   */
  public WeightIndex() {
   setTitle( "我 - 身高体重指数计算器v1.0" );
   setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
   setBounds( 100 , 100 , 450 , 300 );
   //主容器
   contentPane = new JPanel();
   contentPane.setBorder( new EmptyBorder( 5 , 5 , 5 , 5 ));
   contentPane.setLayout( new BorderLayout( 0 , 0 ));
   setContentPane(contentPane);
   //标题,主容器北
   titleLabel = new JLabel( "身高体重指数计算器" );
   titleLabel.setHorizontalAlignment(SwingConstants.CENTER);
   contentPane.add(titleLabel, BorderLayout.NORTH);
   //存放选项的panel,主容器中
   contentPanel = new JPanel();
   contentPanel.setLayout( new BorderLayout());
   contentPane.add(contentPanel,BorderLayout.CENTER);
   //提交按钮,主容器南
   submitButton = new JButton( "计算" );
   contentPane.add(submitButton, BorderLayout.SOUTH);
   //存放性别选择的panel,选项北
   bg = new ButtonGroup();
   sexPanel = new JPanel();
   sexPanel.setLayout( new FlowLayout());
   contentPanel.add(sexPanel,BorderLayout.NORTH);
   ChinaRadio = new JRadioButton( "中国标准" );
   ChinaRadio.setSelected( true );
   AsiaRadio = new JRadioButton( "亚洲标准" );
   WHORadio = new JRadioButton( "WHO(世界卫生组织)标准" );
   bg.add(ChinaRadio);
   bg.add(AsiaRadio);
   bg.add(WHORadio);
   sexPanel.add(ChinaRadio);
   sexPanel.add(AsiaRadio);
   sexPanel.add(WHORadio);
   //存放身高体重的panel,选项中
   whPanel = new JPanel();
   whPanel.setLayout( new FlowLayout());
   contentPanel.add(whPanel,BorderLayout.CENTER);
   heightLabel = new JLabel( "身高(米/m):" );
   weightLabel = new JLabel( "体重(千克/kg):" );
   heightText = new JTextField( 10 );
   heightText.setToolTipText( "请输入身高" );
   weightText = new JTextField( 10 );
   weightText.setToolTipText( "请输入体重" );
   whPanel.add(heightLabel);
   whPanel.add(heightText);
   whPanel.add(weightLabel);
   whPanel.add(weightText);
   //结果
   consolePanel = new JPanel();
   consolePanel.setLayout( new FlowLayout());
   consoleLabel = new JLabel( "你的身体质量指数为:" );
   consoleText = new JTextField( 28 );
   consoleText.setEditable( false );
   consolePanel.add(consoleLabel);
   consolePanel.add(consoleText);
   contentPanel.add(consolePanel,BorderLayout.SOUTH);
   submitButton.addActionListener( new ActionListener(){
    public void actionPerformed(ActionEvent e) {
     String hstr = heightText.getText();
     String wstr = weightText.getText();
     Pattern pattern = Pattern.compile( "^[0-9]+(.[0-9]+)?$" );
     Matcher hisNum = pattern.matcher(hstr);
     Matcher wisNum = pattern.matcher(wstr);
     boolean acc = true ;
     if ( !hisNum.matches()|| !wisNum.matches()){
       acc = false ;
     }
     if (acc)
     {
      height = Double.parseDouble(hstr);
      weight = Double.parseDouble(wstr);
      BMI = weight / (height*height);
      DecimalFormat df = new DecimalFormat( "#.0" );
      String out = "" ;
      if (ChinaRadio.isSelected())
      {
       if (BMI< 18.5 )
        out = "偏瘦,瘦骨嶙峋的,多吃点吧!" ;
       else if (BMI< 23.9 )
        out = "正常,棒棒哒!" ;
       else if (BMI< 28 )
        out = "偏胖,你胖你就运动减肥!" ;
       else if (BMI>= 28 )
        out = "肥胖,现在减肥来的及!" ;
       else
        out = "外星人派来的你哦,请重新输入!" ;
      }
      else if (AsiaRadio.isSelected())
      {
       if (BMI< 18.5 )
        out = "偏瘦,瘦骨嶙峋的,多吃点吧!" ;
       else if (BMI< 22.9 )
        out = "正常,棒棒哒!" ;
       else if (BMI< 24.9 )
        out = "偏胖,你胖你就运动减肥!" ;
       else if (BMI< 30 )
        out = "肥胖,现在减肥来的及!" ;
       else if (BMI>= 30 )
        out = "重度肥胖,不是一般人,赶紧减肥吧!" ;
       else
        out = "外星人派来的你哦,请重新输入!" ;
      }
      else
      {
       if (BMI< 18.5 )
        out = "偏瘦,瘦骨嶙峋的,多吃点吧!" ;
       else if (BMI< 24.9 )
        out = "正常,棒棒哒!" ;
       else if (BMI< 29.9 )
        out = "偏胖,你胖你就运动减肥!" ;
       else if (BMI< 34.9 )
        out = "肥胖,现在减肥来的及!" ;
       else if (BMI< 39.9 )
        out = "重度肥胖,不是一般人,赶紧减肥吧!" ;
       else if (BMI>= 40 )
        out = "极重度肥胖,那可能得去医院看看咯!" ;
       else
        out = "外星人派来的你哦,请重新输入!" ;
      }
      consoleText.setText( "你的指数为:" +df.format(BMI)+ ",你的健康状况为:" +out);
     }
    }
   });
  }
}

希望本文所述对大家java程序设计有所帮助.

原文链接:http://blog.csdn.net/u010992313/article/details/72083337 。

最后此篇关于Java Swing实现简单的体重指数(BMI)计算器功能示例的文章就讲到这里了,如果你想了解更多关于Java Swing实现简单的体重指数(BMI)计算器功能示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com