#include #include using namespace std; class Serijski1 { private: float r; float x; public: void Set_r(float res) { r=res; } float Get_r() { return r; } //-------------------------------- void Set_x(float xx) { x=xx; } float Get_x() { return x; } //-------------------------------- void IzrImpedanciju() { float z; z=sqrt(pow(r,2)+pow(x,2)); cout<