Final answer:
To solve this problem in C, you can use loops and conditionals to iterate through the ships and determine which ships will be available in each week. You can read the names of the ships and the weeks from the standard input and keep track of the operation order of the ships to rotate the available ship each week.
Step-by-step explanation:
In this problem, you are given the names of the Ships of the Lines and the weeks that customers will come. Your task is to report the names of the ships that the customers will have access to in each week. To solve this problem, you can use loops and conditionals in C to iterate through the ships and determine which ships will be available in each week.
You can read the names of the Ships of the Lines and the weeks from the standard input in C. You can store the ship names in arrays or strings and use loops to iterate through the ships. By keeping track of the operation order of the ships and rotating the available ship to the end of the order each week, you can determine which ships will be in use in each week.
For example, if the first line of input is 3, it means there are 3 Ship Lines in the fleet. You can then read the names of the ships for each Line and the weeks that customers will come. Based on this information, you can output the names of the ships that will be in use in each week.