Answer:
public class ANot {
public static void main(String[] args) {
//Scanner in = new Scanner (System.in);
boolean newCustomer = true;
double currentSales =1000;
if (newCustomer||(currentSales>=1000)){
System.out.println("New Customer is true and current sales is greater or equal to 1000");
}
}
Explanation: