I need help making a loop that looks at each value from 1 to number-1. Also how to test each value to see if it is a divisor of number, and if it is, adding it to the sum.
This is what I have so far:
public static void main(String[] args) {
  Scanner input = new Scanner (System.in);
  System.out.print("Please enter a positive integer: ");
  int n = input.nextInt();
  while (n < 0) {
    System.out.println(n + " is not positive.");
    System.out.print("Please enter a positive integer: ");
    n = input.nextInt();
  }
}
 
     
     
    