100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Exam (elaborations)

COS1511 ASSIGNMENT 4 SOLUTIONS 2022 MARKING SCHEME FLIGHT

Rating
5.0
(1)
Sold
2
Pages
9
Grade
A+
Uploaded on
16-09-2022
Written in
2022/2023

COS1511 ASSIGNMENT 4 SOLUTIONS 2022 MARKING SCHEME FLIGHT

Institution
Course









Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
Course

Document information

Uploaded on
September 16, 2022
Number of pages
9
Written in
2022/2023
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

Solution to Assignment 2 Total Marks: 100 (80 + 20)


#include <iostream>
#include <iomanip> //for setw()
#include <string>
using namespace std;

const int NUM = 10;
const float FLIGHT = 1600.00;
const float F_TIMES[5][2] = {{7.00,9.30}, {9.00,11.30},
{11.00,13.30}, {13.00,15.30},
{15.00,17.30}};

struct travelBooking
{
string travellerName;
string travelClass;
float departureTime;
float arrivalTime;
string seatNo;
};
bool validateTimeOption(int opt)
{
if(opt == 1 || opt == 2 || opt == 3 || opt == 4 || opt == 5)
return true;
else
return false;
}

bool validateSeat(travelBooking t[], string sNo, int timeChoice)
{
bool notBooked = true;
float dTime;

dTime = F_TIMES[timeChoice - 1][0];
int i = 0;
//check if it is already booked
while(i < NUM)
{
if(t[i].seatNo == sNo && t[i].departureTime == dTime)
{
notBooked = false;
break;
}
i++;
}

, if(notBooked == false)
return false;
else
return true;

}

void timeMenu(int & timeChoice)
{
cout << "The available travel times for "
<< "flights are:" << endl;

cout << setw(16) << " Depart"
<< setw(7) << "Arrive" << endl;
for(int i = 0; i < 5; i++)
cout << i + 1 << setw(3) << "." << setw(12)
<< F_TIMES[i][0] << F_TIMES[i][1] << endl;

cout << "Choose the time by entering the "
<< "option number from the displayed list:" << endl;
do
{
cin >> timeChoice;
if(!validateTimeOption(timeChoice))
cout<< "Incorrect option! Please choose from 1-5.";
}while(!validateTimeOption(timeChoice));

}

//called the very first time, for any of the listed times
void displaySeats1()
{
int seatFlag = 0;
int divValue;
char row = 'A';
int col = 1;
divValue = 3;

cout.setf(ios::left);
//displaying the seats
cout << "First Class(";
cout << FLIGHT + FLIGHT * 0.20;
cout << ")" << endl;
cout << "|";
for(int i = 1; i <= 50; i++)
{

Reviews from verified buyers

Showing all reviews
2 year ago

5.0

1 reviews

5
1
4
0
3
0
2
0
1
0
Trustworthy reviews on Stuvia

All reviews are made by real Stuvia users after verified purchases.

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
hiltontutorials University of South Africa (Unisa)
Follow You need to be logged in order to follow users or courses
Sold
1905
Member since
6 year
Number of followers
1219
Documents
858
Last sold
3 months ago

3.7

359 reviews

5
145
4
83
3
56
2
28
1
47

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions