/* svuk002@ec.auckland.ac.nz */ public class ToCaps { /* You do not need to modify the main () method */ public static void main (String[] args) { String[] testCases = { "Hello, World!", "123abc", "Oh, to live on a sugar mountain...", "computer science 105 is fun." }; for (int i = 0; i < testCases.length; i++) { String result = convertToCaps (testCases[i]); System.out.println ("The original string was: "); System.out.println (testCases[i]); System.out.println ("The converted string is: "); System.out.println (result); } } /* Complete the convertToCaps () method below */ public static String convertToCaps (String s) { } }