/* This is the skeleton of the program that prints blood cell count histogram. More precisely, the program reads .... Laura Toma csci 101 */ public class BloodCellCount { public static void main (String args[]) { final int BLOOD_CELL_UP_LIMIT = 50; final int BLOOD_CELL_HEALTHY_LIMIT = 35; //variable to read from user ReadStream r = new ReadStream(); //declare more variables //... //print welcome message //... //read number of patients //... //read the bloodcell counts for each patient and keep track of //sum, number of healthy cells and number of anemic cells //... //print out results //print out average //print out healthy cells //print out anemic cells } //end of main } // end of class