Write a program SumIntegers.java
that has the user enter a series of integers. The program will keep asking for values as long as an integer is entered. When the user enters an empty string (“”), the program prints out the sum of all the values entered.
Use the Integer.parseInt(string)
method to convert string values to integers.