#include #include using namespace std; void computeTriangle(float &a, float &p, float x, float y, float z); int main(){ float a,p,x,y,z; cout<<"Enter the sides: "<>x>>y>>z; computeTriangle(a,p,x,y,z); cout<<"The perimeter of the triangle is : "<