package chapter2;

/**
 * Title:        Chapter 2, "Primitive Data Types and Operations"
 * Description:  Examples for Chapter 2
 * Copyright:    Copyright (c) 2000
 * Company:      Armstrong Atlantic State University
 * @author Y. Daniel Liang
 * @version 1.0
 */

// ShowRuntimeErros.java: Program contains runtime errors
public class ShowRuntimeErrors
{
  public static void main(String[] args)
  {
    int i = 1 / 0;
  }
}