<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class Client3 {
    public static void main(String[] args) {
        // construct and print list
        int[] data = {5, 19, 0, 2, 4, 0, 13, 85, -8, 0, 23};
        ArrayIntList list = new ArrayIntList();
        for (int n : data) {
            list.add(n);
        }
        System.out.println("list = " + list);

        // obtain an iterator to find the product of the list, removing zeros
        ArrayIntListIterator i = list.iterator();       
        int product = 1;
        while (i.hasNext()) {
            int n = i.next();
            if (n == 0) {
                i.remove();
            } else {
                product *= n;
            }
        }
        System.out.println("list now = " + list);
        System.out.println("product = " + product);
    }
}</pre></body></html>