#include<iostream>
#include<iomanip>
using namespace std;
float area(float a,float b)
{
return a*b;
}
float area(float t,float b,float h)
{
return(h*(t+b)/2);
}
float area(float r)
{
return 3.14*r*r;
}
#include<iomanip>
using namespace std;
float area(float a,float b)
{
return a*b;
}
float area(float t,float b,float h)
{
return(h*(t+b)/2);
}
float area(float r)
{
return 3.14*r*r;
}
No comments:
Post a Comment