Hi guys..

I'm a newbie in java and I try to understand the logic of this simulation

I want to control the arrival value of the customer and server.

There is no error but the result is mess up. The code did not match with the logic of simulation. Can anyone help me?

This is the code that I put inside:

Code:
int[] servers = {1, 2, 3, 5};
 
            for (int nserv : servers)
...