1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
#include <iostream>
using namespace std;
void getdata(int &, int &, float &);
double installprice(int, int, float);
int main()
{
int length, width;
float costpersqft, price;
double install;
getdata(length, width, costpersqft);
cout << endl
<< length << endl
<< width << endl
<< costpersqft << endl;
installprice(length, width, costpersqft);
cout << endl
<< install
<< endl;
system("pause");
return 0;
}
void getdata(int & length, int & width, float & costpersqft)
{
cin >> length >> width >> costpersqft;
}
double installprice(int length, int width, float costpersqft)
{
double install;
cout << endl
<< length << endl
<< width << endl
<< costpersqft << endl;
install = (length * width * costpersqft);
cout << endl
<< install
<< endl;
return install;
}
|