/** * Author: Josiah Yoder et al. * Class: SE1011-011 * Date: 11/7/13 9:04 AM * Lesson: Week 7, Day 1 */ public class RandomStatic011_9_3 { public static int[] generateLookupTable() { // TODO: implement this method! return null; } public static String askForData() { // TODO: implement this method! return null; } public static int[] encryptData(String input, int[] randomValues) { // TODO: implement this method! return null; } public static void main() { // Top-down approach: // Write method descriptions first, then implementations. // // This is the static (class-method) version. // // See RandomFun011_9_3 for a better top-level implementation. int[] randomValues = generateLookupTable(); String input = askForData(); int[] encryptedResult = encryptData(input, randomValues); } }