Create 2 classes, one called Main and one called Helper.
In Helper, create 3 static methods called forLoop, whileLoop, and ifStatements.
The method forLoop should take 1 parameter called s. In forLoop, create an array of size s and loop s times, each loop asking the user for a number and storing it in the array. After the loop finishes, print the sum of the values in the array.
The method whileLoop should take no parameters. In whileLoop, ask the user for input until they type in a 0. Once done, print the sum of the values typed in.
The method ifStatements should take 2 parameters, x and y. In ifStatements, if x > y, print "X is greater than Y", if x == y, print "X is equal to Y", if x < y, print "X is less than Y". Use if, else if, and else for these.