Company: Ibm_31oct
Difficulty: medium
Maximum Containers Problem Description A company buys fragile components that are shipped in special containers. The seller offers a promotion: customers receive a free container of components if they return a specific number of empty containers. Calculate the maximum number of containers a customer can obtain given: A fixed budget The cost per container The number of empty containers required for a free container Each container is assumed to be emptied and returned for credit immediately. Complete the function maximumContainers in the editor with the following parameter(s): string scenarios[s] : Each string contains three space-separated integers: starting budget, cost, and the number of containers to return for a full container. For each test case, the function must print an integer: the maximum number of containers the manufacturer can obtain, each on a new line. No return value is expected. Examples Example 1: Input: budget = 4, cost = 1, empty_for_free = 2 Output: 7 Explanation: S