/* * Problems with analyzeNumber -- specifically the output is fairly poor * * Created: August 2023 * @author gtowell */ public class AnalyzeNumber5 { public static void main(String[] args) { int num = Integer.parseInt(args[0]); boolean isPositive = num > 0; System.out.println(num + " is positive " + isPositive); // You could make an english sentence like // It is true that 5 is positive. // But this is incredibly awkward. } }