zum www.arachnoid.com auf Windows einzurichten C + + -Code BMI .
3
zu www.arachnoid.com C + + -Tutorial -Seite für C + + -Code BMI -Setup auf Unix
4
Execute Code-Zeilen 1 bis 59 wie folgt auf die entsprechende Plattform : .
01 using System;
02 mit System.Collections.Generic ;
03 mit System.ComponentModel ;
04 mit System.Data;
05 mit System.Drawing ;
06 mit System.Linq ;
07 mit System.Text ;
08 using System.Windows.Forms ;
09
10 Space BMIApp
11 {
12 public partial class Form1 : Form
13 {
14 public Form1 ()
15 {
16 InitializeComponent (); }
17
18
19 private void btnCalculate_Click (object sender, EventArgs e )
20 {
21 Doppel weght = string.IsNullOrEmpty ( txtWeight.Text ) ? 1: Double.Parse ( txtWeight.Text );
22 Doppel height = string.IsNullOrEmpty ( txtHeight.Text ) ? 1: Double.Parse ( txtHeight.Text );
23
24 if ( weght == 0) {
25
26 MessageBox.Show ( " Die Ergebnisse werden ungenau sein Gewicht ist keine gültige Zahl . . ");
27}
28 , wenn (Höhe == 0) {
29
30 MessageBox.Show (" Ergebnisse ungenau Höhe ist keine gültige Zahl . . ");
31}
32
33 Doppel Vmult = cboWeightUnits . SelectedItem.ToString () == " Pfunde " ? 2.204 : 1;
34 Doppel hmult cboHeightUnits.SelectedItem.ToString = () == "Zoll " ? 0,0254 : 1;
35
36 Doppel BMI = Math.Round ((( weght /Vmult ) /( (Höhe * hmult ) * ( Höhe * hmult ))) * 10) /10;
37
38
39 String BMI_description = string.Empty ;
40 if ( BMI < 16,5 )
41 BMI_description = " stark untergewichtig " ,
42 else if ( BMI > = 16,5 && BMI < 18,5 )
43 BMI_description = " Untergewicht " ;
sonst 44 if ( BMI > = 18,5 && BMI <25 )
45 BMI_description = "normal " ;
46 else if ( BMI > = 25 && BMI < = 30)
47 BMI_description = " Übergewicht " ;
48 else if ( BMI > 30 && BMI <= 35 )
49 BMI_description = " fettleibig " ,
< p > 50 else if ( BMI > 35 && BMI < = 40 )
51 BMI_description = " klinisch fettleibig " ;
52 sonst
53 BMI_description = " krankhaft fettleibig " ;
54
55
56 txtResult.Text = string.Format ( " Your Body -Mass-Index (BMI) ist : {0}. Dies würde als {1} " , BMI, BMI_description ); .
57 } 58 }
59}
Finden Sie Ihr BMI
5
Nehmen Sie Ihr Gewicht in lbs. , und geben Sie sie in der Gewichtsklasse -Box des C + +- BMI-Rechner .
6
Messen Sie Ihre Körpergröße in cm und Eingabe in die Höhe der Box C + + BMI-Rechner .
7
Sie fest, ob Ihre Gewichtsklasse ist gesund, übergewichtig oder fettleibig sind, basierend auf den Rechner ausgegeben.
www.alskrankheit.net © Gesundheitswissenschaften