4243444546474849505152
int numNormalCustomers = 0; int numFastCustomers = 0; int numVipCustomers = 0; for (int i = 0; i < numTotolCustomers; ++i) { CustomerType type = CustomerFactory.getCustomerType(r); switch (type) { case kNormal: ++numNormalCustomers; break;