100% tevredenheidsgarantie Direct beschikbaar na betaling Zowel online als in PDF Je zit nergens aan vast
logo-home
COS1512 Assignment 2 2024 | Due 12 July 2024 €2,70   In winkelwagen

Tentamen (uitwerkingen)

COS1512 Assignment 2 2024 | Due 12 July 2024

 64 keer bekeken  5 keer verkocht
  • Vak
  • Instelling
  • Boek

Question 1 Peter wants to send a box containing a painting to London. The Post Office sends parcels to London via GlobalMail or DHL. If GlobalMail is chosen, the cost is R108 per kg if the parcel goes to zone 1 to 3 in London, and R130 per kg if the parcel goes to zone 4 to 6. If DHL is chosen, ...

[Meer zien]

Voorbeeld 2 van de 11  pagina's

  • 24 juni 2024
  • 11
  • 2023/2024
  • Tentamen (uitwerkingen)
  • Vragen en antwoorden
avatar-seller
, PLEASE USE THIS DOCUMENT AS A GUIDE TO ANSWER YOUR ASSIGNMENT


Please note that the author of this document will not responsibility for any plagiarizing you
commit.

 Question 1

1. Peter wants to send a box containing a painting to London. The Post Office sends parcels to
London via GlobalMail or DHL. If GlobalMail is chosen, the cost is R108 per kg if the parcel
goes to zone 1 to 3 in London, and R130 per kg if the parcel goes to zone 4 to 6. If DHL is chosen,
the actual weight is compared to the volumetric weight, and whichever is the higher weight, is
used in the calculation. The volumetric weight is calculated by the formula (length * width *
height) / 5000, where length, width and height is the size of the box in cm. The cost per kg for
DHL is R70. Write a program that will calculate the price to be paid for sending a parcel to
London. The program must use two overloaded functions, each named calcPostage. The user
must be asked if he wants to use GlobalMail or DHL. Define a char variable and ask the user to
input „d‟ for DHL or „g‟ for GlobalMail. If he chooses GlobalMail, the zone must be requested.
The program must validate that the zone is between 1 and 6. If he chooses DHL, the length,
width and height of the box must be requested. The first function will receive two parameters,
one of type double representing the weight of the parcel, and one of type int, representing the
zone. The second function will receive four parameters of type double, representing the actual
weight, and the length, width and height of the box in cms. The second function will first
determine whether the actual weight or the volumetric weight is the highest, before calculating
the cost. Both functions will return the cost in a variable of type double. The main function
should then display the total cost. Define const variables where applicable.

PROGRAM
#include <iostream>
#include <iomanip>

using namespace std;

const double GLOBALMAIL_COST_ZONE_1_TO_3 = 108.0;
const double GLOBALMAIL_COST_ZONE_4_TO_6 = 130.0;
const double DHL_COST_PER_KG = 70.0;
const double VOLUME_WEIGHT_DIVISOR = 5000.0;

double calcPostage(double weight, int zone) {
if (zone >= 1 && zone <= 3) {
return weight * GLOBALMAIL_COST_ZONE_1_TO_3;
} else if (zone >= 4 && zone <= 6) {
return weight * GLOBALMAIL_COST_ZONE_4_TO_6;
} else {
cerr << "Invalid zone provided." << endl;
return 0.0;
}
}

Voordelen van het kopen van samenvattingen bij Stuvia op een rij:

√  	Verzekerd van kwaliteit door reviews

√ Verzekerd van kwaliteit door reviews

Stuvia-klanten hebben meer dan 700.000 samenvattingen beoordeeld. Zo weet je zeker dat je de beste documenten koopt!

Snel en makkelijk kopen

Snel en makkelijk kopen

Je betaalt supersnel en eenmalig met iDeal, Bancontact of creditcard voor de samenvatting. Zonder lidmaatschap.

Focus op de essentie

Focus op de essentie

Samenvattingen worden geschreven voor en door anderen. Daarom zijn de samenvattingen altijd betrouwbaar en actueel. Zo kom je snel tot de kern!

Veelgestelde vragen

Wat krijg ik als ik dit document koop?

Je krijgt een PDF, die direct beschikbaar is na je aankoop. Het gekochte document is altijd, overal en oneindig toegankelijk via je profiel.

Tevredenheidsgarantie: hoe werkt dat?

Onze tevredenheidsgarantie zorgt ervoor dat je altijd een studiedocument vindt dat goed bij je past. Je vult een formulier in en onze klantenservice regelt de rest.

Van wie koop ik deze samenvatting?

Stuvia is een marktplaats, je koop dit document dus niet van ons, maar van verkoper Aimark94. Stuvia faciliteert de betaling aan de verkoper.

Zit ik meteen vast aan een abonnement?

Nee, je koopt alleen deze samenvatting voor €2,70. Je zit daarna nergens aan vast.

Is Stuvia te vertrouwen?

4,6 sterren op Google & Trustpilot (+1000 reviews)

Afgelopen 30 dagen zijn er 81849 samenvattingen verkocht

Opgericht in 2010, al 14 jaar dé plek om samenvattingen te kopen

Start met verkopen
€2,70  5x  verkocht
  • (0)
  Kopen