1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#include <iostream>
using namespace std;
float ak,pk, ap,bp,pp,pdt,ht,pt,atp,btp,htp,ptp,e,f,pr;
string input;
int main()
{
cout << "Witaj uzytkowniku !" << endl;
cout << "Wybierz pole jakiej figury chcesz obliczyc :" <<endl;
cout << "1. Kwadrat | 2. Prostokat | 3. Trojkat | 4. Trapez | 5. Romb |" <<endl;
cout << "Wpisanie 6 poprawnie zakonczy dzialanie programu."<<endl;
cout << "Wpisz sama cyrfre BEZ KROPKI i zatwierdz enterem." <<endl;
cin >> input;
{
if (input=="1")
{
cout << "Podaj bok kwadratu:"<<endl;
cin >> ak;
pk=ak*ak;
cout << "Pole kwadratu o podanym boku wynosi : "<<pk<<endl;
cin >> lmao;
}
if (input=="2")
{
cout << "Podaj jeden z bokow prostokata:"<<endl;
cin >> ap;
cout << "Podaj drugi bok prostokata:"<<endl;
cin >> bp;
pp=ap*bp;
cout << "Pole prostokata o podanych bokach wynosi : "<<pp<<endl;
}
if (input=="3")
{
cout << "Podaj podstawe trojkata:"<<endl;
cin >> pdt;
cout << "Podaj wysokosc trojkata:"<<endl;
cin >> ht;
pt=(pdt*ht)/2;
cout << "Pole trojkata o podanych wymiarach wynosi : "<<pt<<endl;
}
if (input=="4")
{
cout << "Podaj pierwsza podstawe trapezu:"<<endl;
cin >> atp;
cout << "Podaj druga podstawe trapezu:"<<endl;
cin >>btp;
cout << "Podaj wysokosc trapezu:"<<endl;
cin >> htp;
ptp=((atp+btp)*htp)/2;
cout << "Pole trapezu o podanych wymiarach wynosi : "<<ptp<<endl;
}
if (input=="5")
{
cout << "Podaj jedna z przekatnych rombu :"<<endl;
cin >> e;
cout << "Podaj druga przekatna rombu :"<<endl;
cin >> f;
pr=(e*f)/2;
cout << "Pole rombu o podanych przekatnych wynosi : "<<pr<<endl;
}
}
if (input=="6")
{
cout << "Dziekuje za skorzystanie z programu !"<<endl;
return 0;
}
}
|