Preview:
public class Order {
  
  public static void main(String[] args) {
    
    double itemCost = 30.99;
    
    // Write an if-then statement:
   if (itemCost > 24.00) {
 
  System.out.println("High value item!");
 
} 
    
  }
  
}

/// if else example

public class Order {
  
  public static void main(String[] args) {
    
    boolean isFilled = false;
    
    // Write an if-then-else statement:
       if (isFilled) {
 
  System.out.println("Shipping");
 
} else{
  System.out.println("Order not ready");
}
    
  }
  
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter