Odpowiedź:
#include <iostream>
float area(float a, float b, float h){
return (a + b) * h / 2;
}
int main()
{
float a, b, h;
std::cout << "Podaj dlugosc dolnej podstawy\n";
std::cin >> a;
std::cout << "Podaj dlugosc gornej podstawy\n";
std::cin >> b;
std::cout << "Podaj dlugosc wysokosci\n";
std::cin >> h;
std::cout << "Pole trapezu wynosi: " << area(a, b, h);
return 0;
}
Wyjaśnienie: