This is what my professor send me
" In this lab you will create a program that computes charges to ship a package with Super Fast Diego
Company. Using Assignment #3 and your Common Classes:
Class ShippingCharges
Attributes:
int packageID;
double weight;
double distance;
double charges = 0.00f;
Customer customerShip;
Customer customerReceive;
Include public void printInvoice()
Class Customer
Name name;
Address address;
Phone phone;
Example of a ShippingChgDriver
public class ShippingChgDriver
{
public static void main()
{
System.out.println("Enter a package to be shipped");
ShippingCharges package1 = new ShippingCharges();
package1.printInvoice();
} // main()
} // end ShippingChgDriver"
Here is the PDF my professor send me Project 3.pdf
Can someone help me better understand this problem and what I have to do to solve this problem. THANK YOU SOOOO MUCH!!!!!
This is what my professor send me
" In this lab you will create a program that computes charges to ship a package with Super Fast Diego
Company. Using Assignment #3 and your Common Classes:
Class ShippingCharges
Attributes:
int packageID;
double weight;
double distance;
double charges = 0.00f;
Customer customerShip;
Customer customerReceive;
Include public void printInvoice()
Class Customer
Name name;
Address address;
Phone phone;
Example of a ShippingChgDriver
public class ShippingChgDriver
{
public static void main()
{
System.out.println("Enter a package to be shipped");
ShippingCharges package1 = new ShippingCharges();
package1.printInvoice();
} // main()
} // end ShippingChgDriver"
Here is the PDF my professor send me Project 3.pdf
Can someone help me better understand this problem and what I have to do to solve this problem. THANK YOU SOOOO MUCH!!!!!