//This is a program that displays a blood cell histogram. See class notes. //Laura Toma #include //This function prints n stars void printStars(int n) { int i = 0; while (i= LRANGE && bloodCellCount <= URANGE) { cin >> bloodCellCount; if (bloodCellCount >= LRANGE && bloodCellCount < URANGE) { ncells++; sumcells = sumcells + bloodCellCount; } if (bloodCellCount >= 35 && bloodCellCount <= 50) { healthyCells++; } } double avgCount = sumcells/ncells; cout << "The average blood cell count is " << avgCount << endl; cout << "The distribution of the blood cell counts was: \n"; cout << "Healthy: "; printStars(healthyCells); cout << endl; cout << "Anemic: "; printStars(ncells-healthyCells); cout <