Given the variables numberOfMen and numberOfWomen, write an expression that evaluates to true if the number of men is greater than or equal to the number of women.
LANGUAGE: JAVA
CHALLENGE:
Given the variables numberOfMen and numberOfWomen, write an expression that evaluates to true if the number of men is greater than or equal to the number of women.
SOLUTION:
LANGUAGE: JAVA
CHALLENGE:
Given the variables numberOfMen and numberOfWomen, write an expression that evaluates to true if the number of men is greater than or equal to the number of women.
SOLUTION:
numberOfMen >= numberOfWomen
Posted in Java, Learn To Code