There is no problem in the integrated example, or it is best to enter the best, you can be familiar with the code structure. Runsums.java
// RunSums.java: top level, main (), calls methods to // handle subproblems import tio *; class RunSums {public static void main (String [] args) {printBanner (); printHeadings (); readAndPrintData (). } // PrintBanner, PrintHeadings and readandprintdata // definitions will Go Here static void printbanner () {system.out.println ("/ n" "**************** ********************** / N " " * Running SUMS, Minimums, And Maximums * / N " " ******** ******** ******************************** / N ");} static void printheadings () {system.out.println (Syst_Println "Count / titm / tsum / TMINIMUM / TMAXIMUM");} static void readandprintdata () {int CNT = 0, SUM = 0, item, smallest, biggest; item = console.in.readint (); smallest = Biggest = iTEM WHILE (item! = -9999) {CNT ; Sum = SUM ITEM; Smallst = min (item, smallest); Biggest = Max (item, biggest); System.out.Println (CNT "/ T" item "/ t" sum "/ t" smallest "/ t" biggest); item = console.in.readint ();}} static INT min (INT A, INT B) {IF (a B) Return A; Else Return B;}}