public class Main {
public static void main(String[] args) {
boolean enrolledInAutomationClass = true;
boolean notEnrolledInAutomationClass = !enrolledInAutomationClass;
System.out.println("Is the student enrolled in the automation class? " + notEnrolledInAutomationClass);
}
}
Comments