Content of file Main.java 01 public class Main{ 02 public static voic main(final String args...){ 03 functionOne(); 04 functionTwo(); 05 functionThree(); 06 } 07 08 public static void functionOne() 09 { 10 System.out.println("testfile for redundancy"); 11 for(int i = 0; i < 10; i++) 12 { 13 System.out.println(i); 14 } 15 } 16 17 public static void functionTwo() 18 { 19 System.out.println("testfile for redundancy"); 20 for(int i = 0; i < 10; i++) 21 { 22 System.out.println(i); 23 } 24 } 25 26 public static void functionThree() 27 { 28 System.out.println("testfile for redundancy"); 29 for(int i = 0; i < 10; i++) 30 { 31 System.out.println(i); 32 } 33 } 34 35 }