#include using namespace std; float obdelnik(float a, float b) { return a * b; } int main() { float x,y,a; x = 3; y = 9; a = 2; float objem = a * obdelnik(x, y); cout << "objem bazenu je " << objem; }