I am new to C++ I am learning C++ and I came accross this example that I needed some clarification. Every time user inser less than 69 it outputs good. Any ideas?
You have the OR operator here, meaning that the if-statement will be true if either of the conditions are satisfied. 69 is less than 100, making the second condition true, thus outputting "Good".