ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content



Photo

simple bmi


  • Please log in to reply
simple bmi

#1

Northsbest
Northsbest
    Offline
    0
    Rep
    0
    Likes

    New Member

Posts: 16
Threads: 1
Joined: Oct 20, 2018
Credits: 0
Five years registered
#1

Made by intenso (me) 

#include <iostream>
#include <conio.h>
#include <Windows.h>
int main() {

	double height, weight, bmi;
	
	SetConsoleTitle("BMI rechner");
	std::cout << "Sag mir deine Koerpergroesse (m): "; // in meter 
	std::cin >> height;

	std::cout << "Sag mir dein Gewicht (kg): "; // in kg
	std::cin >> weight;

	// gewicht * höhe²
	bmi = weight / (height * height);

	std::cout << "Dein BMI ist " << bmi << "\n"; // ausgabe 
	std::cout << "  \n";
	std::cout << "Sorgen kann man teilen. https://www.telefonseelsorge.de/ \n";
	_getch();

}

  • 0


 Users browsing this thread: