public class ITSystem
{
  private int id;      // local inventory no.
  private int roomNo;  // location
  private int problems; // count of reported problems
  
  /**
   * A constructor for creating a new ITSystem.
   *
   * @param id  unique id of system
   * @param roomNo  location of system
   * @param problems number of reported problems for system
   */
  
  public ITSystem( int id, int roomNo, int problems )
  {
    this.id = id;
    this.roomNo = roomNo;
    this.problems = problems;
  }
  
  /**
   * Record problem
   *
   */
  
  public void recordProblem()
  {
    problems++;
  }
  
  public int getId()
  {
    return id;
  }
  
  public int getRoomNo()
  {
    return roomNo;
  }
  
  public int getProblemCount()
  {
    return problems;
  }
  // you add toString() here
}

