Sett opp C + + BMI -kode på Windows eller Linux /Unix-plattformer .
to
Gå til www.arachnoid.com å sette opp C + + BMI kode på Windows .
3
Gå til www.arachnoid.com C + + tutorial side for C + + BMI kode oppsett på Unix
4
Execute kodelinjer 1-59 som følger på den aktuelle plattformen : .
01 bruker System;
02 bruker System.Collections.Generic;
03 bruker System.ComponentModel;
04 bruker System.Data;
05 bruker System.Drawing;
06 bruker System.Linq;
07 bruker System.Text;
08 bruker system.windows.forms;
09
10 navnerom BMIApp
11 {
12 public delvis class Form1 : Form
13 {
14 public Form1 ( )
15 {
16 InitializeComponent ( );
17 }
18
19 private void btnCalculate_Click ( objekt avsenderen , EventArgs e )
20 {
21 double weght = string.IsNullOrEmpty ( txtWeight.Text ) ? 1 : double.Parse ( txtWeight.Text );
22 double height = string.IsNullOrEmpty ( txtHeight.Text ) ? 1 : double.Parse ( txtHeight.Text );
23
24 if ( weght == 0 )
25 {
26 MessageBox.Show ( "Resultatene vil være unøyaktig Vekt er ikke et gyldig nummer . . ");
27 }
28 if ( høyde == 0 )
29 {
30 MessageBox.Show ( "Resultatene vil være unøyaktig Høyde er ikke et gyldig nummer . .");
31 }
32
33 double vmult = cboWeightUnits . SelectedItem.ToString ( ) == " pounds " ? 2,204 : 1;
34 double hmult = cboHeightUnits.SelectedItem.ToString ( ) == " inches " ? 0,0254 : 1;
35
36 double BMI = Math.Round ( ( ( weght /vmult ) /( (høyde * hmult ) * ( høyde * hmult ) ) ) * 10 ) /10;
37
38
39 streng BMI_description = string.Empty;
40 if ( BMI <16,5 )
41 BMI_description = " alvorlig undervektig ";
42 else if ( BMI> = 16,5 &&BMI <18,5 )
43 BMI_description = " undervektig ";
44 annet if ( BMI> = 18,5 &&BMI <25 )
45 BMI_description = " normal ";
46 else if ( BMI> = 25 &&BMI <= 30 )
47 BMI_description = "overvekt ";
48 else if ( BMI> 30 &&BMI <= 35 )
49 BMI_description = " overvektige";
50 else if ( BMI> 35 &&BMI <= 40 )
51 BMI_description = " klinisk overvektige ";
52 annet
53 BMI_description = " sykelig overvektige ";
54
55
56 txtResult.Text = string.Format ( " Your Body Mass Index ( BMI ) er : { 0 } . Dette vil bli vurdert { 1 } " , BMI , BMI_description ); .
57 }
58 }
59 }
Finn ditt BMI
5
Ta din vekt i kg. , og skriv det inn i vektklasse boksen i C + + BMI kalkulator .
6
Mål høyden din i inches og setter dem inn i høyden boksen i C + + BMI kalkulator .
7
Finn ut om din vektklasse er sunt , overvektige eller fete , basert på kalkulatoren utgang .