You are given n containers lined up, each holding a certain volume of oil. A sequence of n-1 steps is performed. The oil in the first container is emptied into the second, and once this step is complete, the oil in the second is emptied into the third and this process is continued till the last. During the emptying step, any excess volume gets spilt. The objective is to calculate the volume of oil collected in the last container and also the volume of oil spilt during the entire sequence of steps.
(c,c++, Python)
Answers
Answered by
0
Answer:
In the following article, we will compare the 3 most used coding languages from a beginner’s perspective. It will help you to learn basics of all the 3 languages together while saving your time and will also help you to inter shift from one language you know to the other which you don’t. Let’s discuss a brief history of all the 3 languages and then we will move on to the practical learning.
Answered by
0
Answer:
Input: N = 3, X = 5. Output: 4. After 1 second, the container at level 1 gets fully filled. After 2 seconds, the 2 containers at level 2 are
Explanation:
Similar questions