Hi, I'm trying to learn more about classes/vectors/queues, so I've been playing around with code I find online. The code in question is from this site: http://stdcxx.apache.org/doc/stdlibug/10-3.html
I tried to adjust the code so that multiple customers can come in per minute. I changed the process time in class Customer to constant 1. I also added another for loop in main() and marked where i made the change.I think whats happening is that all 10 customers that walk in go straight to the 1st teller because they are Customer(t) for the same t. how can I change this so that each customer goes to a different teller? Thanks in advance!