using System;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static void Main()
int[] quantityBreaks = new int[] { 1000, 2500, 5000, 7500 };
int quantityIncrement = 1000;
int maxQuantity = 15000;
/*
Given the following:
1. a list of quantity price breaks (quantityBreaks),
2. a quantity increment value (quantityIncrement), and
3. a maximum quantity value (maxQuantity),
generate a list of available quantities (availableQuantities).
Requirements:
The lowest quantity should equal the lowest quantity price break in the quantityBreaks list.
The highest quantity should equal the maxQuantity value.
The resulting list should include every quantity price break in quantityBreaks up to the maximum quantity, inclusive.
The resulting list should also include every quantity at the specified increment (quantityIncrement) between the lowest and highest quantity, inclusive.
The resulting list should be sorted in order from lowest to highest.
*/
Console.WriteLine("Write the resulting list of available quantities to console.");
}