Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6075939
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:33:02+00:00 2026-05-23T10:33:02+00:00

My package compiles, the get functions work except for the doubles it prints a

  • 0

My package compiles, the get functions work except for the doubles it prints a random number. Any ideas?

#ifndef Package_H
#define Package_H


#include <string>

using namespace std;

//The class Package is the base class for derived classes TwoDayPackage and OverNightPackage

class Package //begins class Package 
{ 
public: 
    Package(const string &, const string &, const string &, const string &, const string &, const string &, const string &, const string &, const string &, const string &, double = 0.0, double  = 0.0); //constructor 

    //set and get functions for sender 
    void setSenderName(const string &); 
    string getSenderName() const; 

    void setSenderAddress(const string &); 
    string getSenderAddress() const; 

    void setSenderCity(const string &); 
    string getSenderCity() const; 

    void setSenderState(const string &); 
    string getSenderState() const; 

    void setSenderZip(const string &); 
    string getSenderZip() const; 

    //set and get functions for recipient 
    void setRecipientName(const string &);   
    string getRecipientName() const;   

    void setRecipientAddress(const string &);   
    string getRecipientAddress() const;   

    void setRecipientCity(const string &);   
    string getRecipientCity() const;   

    void setRecipientState(const string &);   
    string getRecipientState() const; 

    void setRecipientZip(const string &);   
    string getRecipientZip() const; 

    void setWeight(double); 
    double getWeight() const; 

    void setShip(double); 
    double getShip() const; 

    double calculateCost() const; 
    void print() const;

private: 
    string senderName; 
    string senderAddress; 
    string senderCity; 
    string senderState; 
    string senderZip; 
    string recipientName; 
    string recipientAddress; 
    string recipientCity; 
    string recipientState; 
    string recipientZip; 
    double weight; 
    double shipCost; 

};

#endif

.

//next page
#include <iostream>
using namespace std;

#include "Package.h"

Package::Package(const string & sname, const string & saddress, const string & scity, const string & sstate, const string & szip, const string & rname, const string & raddress, const string & rcity, const string & rstate, const string & rzip, double weight, double shipCost) 


{ 
    senderName = sname; 
    senderAddress = saddress; 
    senderCity = scity; 
    senderState = sstate; 
    senderZip = szip; 
    recipientName = rname; 
    recipientAddress = raddress; 
    recipientCity = rcity; 
    recipientState = rstate; 
    recipientZip = rzip; 
    setWeight(weight); 
    setShip(shipCost); 

} 



void Package::setSenderName(const string & sname) 
{ 
    senderName = sname; 
} 

string Package::getSenderName() const 
{ 
    return senderName; 
} 



void Package::setSenderAddress(const string & saddress) 
{ 
    senderAddress = saddress; 
} 

string Package::getSenderAddress() const 
{ 
    return senderAddress; 
} 



void Package::setSenderCity(const string & scity) 
{ 
    senderCity = scity; 
} 

string Package::getSenderCity() const 
{ 
    return senderCity; 
} 




void Package::setSenderState(const string & sstate) 
{ 
    senderState = sstate; 
} 

string Package::getSenderState() const 
{ 
    return senderState; 
} 




void Package::setSenderZip(const string & szip) 
{ 
    senderZip = szip; 
} 

string Package::getSenderZip() const 
{ 
    return senderZip; 
} 




void Package::setRecipientName(const string & rname) 
{ 
    recipientName = rname; 
} 

string Package::getRecipientName() const 
{ 
    return recipientName; 
} 



void Package::setRecipientAddress(const string & raddress) 
{ 
    recipientAddress = raddress; 
} 

string Package::getRecipientAddress() const 
{ 
    return recipientAddress; 
} 



void Package::setRecipientCity(const string & rcity) 
{ 
    recipientCity = rcity; 
} 

string Package::getRecipientCity() const 
{ 
    return recipientCity; 
} 



void Package::setRecipientState(const string & rstate) 
{ 
    recipientState = rstate; 
} 

string Package::getRecipientState() const 
{ 
    return recipientState; 
} 


void Package::setRecipientZip(const string & rzip) 
{ 
    recipientZip = rzip; 
} 

string Package::getRecipientZip() const 
{ 
    return recipientZip; 
} 




void Package::setWeight(double weight) 
{ 
    weight = (weight < 0.0 ) ? 0.0 : weight; 
} 
double Package::getWeight() const 
{ 
    return weight; 
} 



void Package::setShip(double shipCost) 
{ 
    shipCost = ( shipCost < 0.0) ? 0.0 : shipCost; 
} 

double Package::getShip() const 
{ 
    return shipCost; 
} 

double Package::calculateCost() const 
{   
    return weight * shipCost;
} 

void Package::print() const
{
cout<<"Sender:"<<endl
    <<senderName<<endl
    <<senderAddress<<endl
    <<senderCity<<", "<<senderState<<" "<<senderZip<<endl
    <<endl
    <<"Recepient:"<<endl
    <<recipientName<<endl
    <<recipientAddress<<endl
    <<recipientCity<<", "<<recipientState<<" "<<recipientZip<<endl
    <<endl
    <<"Weight of package: "<<weight<<" oz."<<endl
    <<"Type of delivery: Regular Delivery"<<endl
    <<"Cost of package: $"<<calculateCost()<<endl;
}

//The class TwoDayPackage is the first derived class from class Package




//The class OverNightPackage is the second derived class from class Package

.

//main function

#include <iostream>
#include <iomanip>
#include <vector>

using namespace std;
using std::setprecision;

#include "Package.h"
/*#include"overnighttest.h"
#include"twoday2.h"*/
//Test File

int main() 
{ 
   Package message("chris beyer","1 westwood circle","edison","nj","08820","mike b","1 westwood cirle","edison","nj","08820",10.00,1.50);

    /*OverNightPackage box("John Doe", "789 Fire Street", "Hell", "MI", "48169", "Jane Doe", "987 Leg Sun Crossing", "Intercourse", "PA", "17534", 10.00, 1.50, .85); 

    TwoDayPackage parcel("John Doe", "789 Fire Street", "Hell", "MI", "48169", "Jane Doe", "987 Leg Sun Crossing", "Intercourse", "PA", "17534", 15.00, 1.05, 5.00);*/



    cout << fixed << setprecision(2); 

    cout<<"Package delivery services program"<<endl
    <<endl
    <<"Cost per ounce for a package: $.50/ounce"<<endl
    <<"Additional cost for two day delivery:  $2.00/ounce"<<endl
    <<"Additional cost for overnight delivery: $5.00/ounce"<<endl<<endl;


    vector<Package*> myPackages;

Package *messagePtr=&message;
/*TwoDayPackage *TDpPtr=&TDp;
OvernightPackage *OpPtr=&Op;*/

myPackages.push_back(messagePtr);
/*myPackages.push_back(TDpPtr);
myPackages.push_back(OpPtr);*/

double total=0;

for(int i=0;i<myPackages.size();i++)
{
    cout<<"Package #"<<i+1<<":"<<endl<<endl;
    (*myPackages[i]).print();
    cout<<endl;
    total+=(*myPackages[i]).calculateCost();
}

cout<<"Total cost for all the packages: $"<<total<<endl;

system("pause");

    return 0;


}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T10:33:02+00:00Added an answer on May 23, 2026 at 10:33 am

    In your setters, you’re not setting the instance variables. For instance: weight = (weight < 0.0) ? 0.0 : weight just changes the temporary variable used for the argument. You can either change the name of the parameter, change the name of the instance variable (recommended), or use the syntax this->weight = ...

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This confuses me. The following compiles fine under Eclipse. package com.example.gotchas; public class GenericHelper1
I am trying to get the following example to work in Flash Builder 4:
In Python's interactive shell you can get a list of built-in functions (if you
I've been learning about encapsulation in AS3 and using get/set functions to make variables
I was just pleasantly surprised to came across the documentation of Python's compiler package
I would like to find a way to compile and package our iPhone application
When compiling the following simpleType with the XJC compile (from the JAXB package)... <xs:simpleType
I'm trying to compile GNUstep on a linux box but gnustep-gui-0.16.0 package is failing.
Given a property: <property name=classes value=com.package.Class1,com.package.Class2 /> I'm trying to compile only the classes
package pack; public class sample{ public static void main(String input[]) { NumberFormat numberFormat =

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.