X689: Simple Comparison C++

Replace the /* comparison */ comment with the appropriate expression that evaluates whether the variable first is the same size or bigger than the variable second.

Your Answer:

x
 
1
bool sameOrBigger(float first, float second)
2
{
3
    bool result = /* comparison */;
4
    return result;
5
}
6
Reset

Practice a different C++ exercise

Feedback

Your feedback will appear here when you check your answer.