> // 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");