Facebook
From Corrupt Teal, 6 Years ago, written in C++.
Embed
Download Paste or View Raw
Hits: 410
  1. #include <iostream>
  2.  
  3. using namespace std;
  4. int waga;
  5. double bmi, wzrost;
  6. int main()
  7. {
  8.     cout << "Podaj wage w kilogramach" << endl;
  9.     cin>>waga;
  10.     cout << "Podaj wzrost w metrach" << endl;
  11.     cin>>wzrost;
  12.     wzrost=wzrost*wzrost;
  13.     bmi=(waga/wzrost);
  14.     cout <<"Twoje BMI wynosi " << bmi <<endl;
  15.     return 0;
  16. }
  17.  

Replies to Untitled rss

Title Name Language When
Re: Untitled Social Hamerkop cpp 6 Years ago.