// File DDTest10.java
// Sixth reading exceeds the limit
public class DDTest10 {

   public static void main (String [] args) {
   
      DrugData limit = new DrugData(.2, .3, .2, 1.1, 1.1, .25, 0.7);
      
      DrugData athlete = new DrugData(0.1, 0, 0, 0, 0, 1.0, 0);
      
      if (athlete.examine(limit))
      
         System.out.println("examine results");
         
      else
      
         System.out.println("no concerns");
         
   }
}

