Can somebody help me with 4/11

.

public class Not {
public static void main(String args) {

	System.out.println(!false);
	System.out.println( !(5>=1) );
	
}

}
Line 4 has a code statement that is incomplete. Use each Boolean operator no more than once to replace the empty comments /**/. The code statement should print out false.

Your code is perfect, what’s the problem?
link: https://www.codecademy.com/en/courses/learn-java/lessons/conditionals-control-flow/exercises/boolean-operators-not

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.