What is the meaning of “exclusive” and “inclusive” when describing number ranges?

前端 未结 3 1640
野趣味
野趣味 2021-02-01 05:23

Simple question but, I see exclusive and inclusive when referring to number ranges.

For example, this is a line from an algorithms book:

The follo

3条回答
  •  长发绾君心
    2021-02-01 05:41

    The following function prints the powers of 2 from 1 through n (inclusive).

    This means that the function will compute 2^i where i = 1, 2, ..., n, in other words, i can have values from 1 up to and including the value n. i.e n is Included in Inclusive

    If, on the other hand, your book had said:

    The following function prints the powers of 2 from 1 through n (exclusive).

    This would mean that i = 1, 2, ..., n-1, i.e. i can take values up to n-1, but not including, n, which means i = n-1 is the highest value it could have.i.e n is excluded in exclusive.

提交回复
热议问题