Good Day All!!! i want this program to read an interger , and print the sum of all positive #'s numbers within it. Im Stummped once again.
Code:import java.util.Scanner ;
public class Kush {
public static void main(String[]args)
{
int j, holder;
Scanner b = new Scanner(System.in);
System.out.print("PLease enter a number : ");
j = b.nextInt();
holder = j;
}
}

