All pastes #2093429 Raw Edit

info2

public text v1 · immutable
#2093429 ·published 2011-11-09 21:13 UTC
rendered paste body
#include <iostream>
using namespace std;

int main ()
{
	int G;
	cout << "BMI Berechnen lassen:" << endl;
	cout << "Gewicht:" << endl;
	cin >> G >> endl;
	int L;
	cout << "Lnge:" << endl;
	cin >> L >> endl;

	int bmi
	bmi= (G/L*L);
	cout << bmi << endl;

	system("Pause");
	return 0;
}