// Prevent a division by zero using the ?. 
class NoZeroDivEquivalent { 
   public static void main(String args[]) 
   { 
      for(int i = -5; i < 6; i++)
      {
         if(i != 0 ? true : false) 
         System.out.println("100 / " + i + 
                              " is " + 100 / i); 
      }
      
      System.out.println("Here, we only need an if statement");
      for(int i = -5; i < 6; i++)
      {
         if(i != 0) 
         {
            System.out.println("100 / " + i + 
                              " is " + 100 / i); 
         }
      }
   } 
}
