Answer:
This program is created to Calculate Fast Freight Shipping Rates. It prompts user to enter the weight of the package, calculates the shipping charges of the package and display the charges on the screen.
Explanation:
#include<iostream>
using namespace std;
// declaring functions
void Display();
float getWeight ();
float setShipping (float);
void showShipping (float);
main() // main function
{
float Weight, Shipping;
Display();
Weight=getWeight(); //function call
Shipping=setShipping(Weight); //function call
showShipping(Shipping); //function call
}
void Display() // function to display message
{
cout<<"Calculate Fast Freight Shipping Rates Here:"<<endl;
}
float getWeight () // function to get weight
{
float Weight;
cout<< "Enter package weight:";
cin>> Weight;
return Weight;
}
float setShipping (float Weight) //funtion to calculate shipping
{
float calShipping;
if (Weight > 10)
calShipping=3.80;
else if (Weight > 6)
calShipping= 3.70;
else if (Weight > 2)
calShipping= 2.2;
else
calShipping= 1.10;
return calShipping;
}
void showShipping (float Shipping) // funtion to disps chargepping shilay
{
cout<<"Shipping Charges: $" << Shipping;
}