can be equivalently expressed as
n < 201
Returning to the previous example, the program statement that forms the body of the for loop (triangularNumber += n;) is repetitively executed as long as the result of the relational test is true, or in this case, as long as the value of n is less than or equal to 200. This program statement has the effect of adding the value of n to the value of triangularNumber.