> // greater-than
Here is another program fragment:
int count = 10; int inc = -1; while ( count < 100 ) // check the relational operator { System.out.println( "count is:" + count ); count = _____________________; } System.out.println( "Count was " + count + " when it failed the test");