Odpowiedź:
Wyjaśnienie:
#include <iostream>
using namespace std;
int wzrost;
int main(){
cout << "Podaj swoj wzrost w centymetrach" << endl;
cin >> wzrost;
if(wzrost<160){
cout << "Jestes osoba niska";
}else if(wzrost<180){
cout << "Jestes osoba wysoka";
}else{
cout << "Jestes osoba bardzo wysoka";
}
}