0% found this document useful (0 votes)
138 views2 pages

Programming

The document declares arrays to store the names and sales of 6 types of pizza. It prompts the user to input the sales for each pizza and stores them in the sales array. It then iterates through the sales array to find the best and worst selling pizzas by comparing each sale amount to the running highest and lowest. Finally, it outputs the name and sales of the best and worst selling pizzas.

Uploaded by

Sanyln Acla
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
138 views2 pages

Programming

The document declares arrays to store the names and sales of 6 types of pizza. It prompts the user to input the sales for each pizza and stores them in the sales array. It then iterates through the sales array to find the best and worst selling pizzas by comparing each sale amount to the running highest and lowest. Finally, it outputs the name and sales of the best and worst selling pizzas.

Uploaded by

Sanyln Acla
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

#include <iostream>

#include <string>

using namespace std;

int main()
{
const int ARR_SIZE = 6; // Declare the array size and set it to 6
// Declare the array of pizza names and record values in it
string name[ARR_SIZE] = {"Pepperoni", "Prosciutto", "Vegetarian",
"Sausage",
"Supreme",
"Mozzarella"};
int sales[ARR_SIZE]; // Declare the sales array
int worstseller_number, bestseller_number; // The subscripts of the best- and worstseller
string worstseller_name, bestseller_name; // The sale numbers of the best- and worstseller

for (int i = 0; i < ARR_SIZE; i++) // A loop to enter all sales numbers

{
cout << "Enter sales for " << name[i] << ": ";
cin >> sales[i];
}

// Make the first element in name[] the bestseller and the worstseller name
worstseller_name = bestseller_name = name[0];
// Make the first element in sales[] the bestseller and the worstseller sales amount
worstseller_number = bestseller_number = sales[0];

for (int i = 0; i <ARR_SIZE; i++) // Loop through all elements in sales[]


{
if (sales[i] < worstseller_number) // If an element is less than the lowest...
{
worstseller_number = sales[i]; // make the lowest sales equal to its sales
worstseller_name = name[i]; // make the worstseller name equal to its name
}

if (sales[i] > bestseller_number) // If an element is higher than the highest...


{
bestseller_number = sales[i]; // make the highest sales equal to its sales
bestseller_name = name[i]; // make the bestseller name equal to its name
}
}

cout << "The bestselling pizza is " << bestseller_name << " with the sales of "
<< bestseller_number << endl; // Display the best selling pizza
cout << "The worst selling pizza is " << worstseller_name << " with the sales of "
<< worstseller_number << endl;
} // display the worst selling pizza

You might also like