#include <iostream>
using namespace std;
int main()
{
float a,b,h,pole;
cout<<"Obliczanie pola trapezu"<<endl;
cout<<"Podaj dlugosc a: "; cin>>a;
cout<<"Podaj dlugosc b: "; cin>>b;
cout<<"Podaj wysokosc: "; cin>>h;
pole=(a+b)*h/2;
cout<<"Pole wynosi: "<<pole;
return 0;
}
#include <cmath>
double a, b, h;
cout << "Wpisz dlugosc krawedzi podstawy: ";
cin >> a;
cout << "Wpisz dlugosc gornej krawedzi: ";
cin >> b;
cout << "Wpisz dlugosc wyskokosci: ";
cin >> h;
cout << "Pole wynosi " << (a+b)*h/2 <<endl;
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
int main()
{
float a,b,h,pole;
cout<<"Obliczanie pola trapezu"<<endl;
cout<<"Podaj dlugosc a: "; cin>>a;
cout<<"Podaj dlugosc b: "; cin>>b;
cout<<"Podaj wysokosc: "; cin>>h;
pole=(a+b)*h/2;
cout<<"Pole wynosi: "<<pole;
return 0;
}
#include <cmath>
#include <iostream>
using namespace std;
double a, b, h;
int main()
{
cout << "Wpisz dlugosc krawedzi podstawy: ";
cin >> a;
cout << "Wpisz dlugosc gornej krawedzi: ";
cin >> b;
cout << "Wpisz dlugosc wyskokosci: ";
cin >> h;
cout << "Pole wynosi " << (a+b)*h/2 <<endl;
return 0;
}