// PrimeNumbers.java - Display the prime numbers between 1 and 100 public class PrimeNumbers { public static void main(String[ ] args) { System.out.println("I will tell you all prime numbers between 1 and 100"); int trialDivisor; boolean found; for (int j=2; j<=100; j++) { trialDivisor=2; found=false; while(!found&&trialDivisor