Write a small sequence of statements that gets 50 integer inputs from the user, adds them together, and prints out their total. Print input prompts for the user. Properly use a counting loop, and your counting variable must be named ’inputCount’.
so far i only have this, i don't know how to do the rest
Scanner in = new Scanner (System.in);
System.out.println("Please enter an integer: ");
int inputCount = in.nextInt();