/** * Author: Josiah Yoder et al. * Class: SE1011-011 * Date: 11/7/13 3:42 PM * Lesson: Week 7, Day 1 */ public class RandomFun051_9_2 { public static int[] makeLookupTable() { // TODO: Implement this. return null; } public static String askUserForInput() { // TODO: Implement this. return null; } public static int[] encryptData(int[] randomNumbers, String input) { // TODO: Implement this. return null; } public static void main(String[] args) { // // Way-to-simple encryption: // // Replace each letter with a random // integer. // int[] randomNumbers = makeLookupTable(); String input = askUserForInput(); int[] encryptedData = encryptData(randomNumbers, input); // top-down: Write method stubs first // bottom-up: Implement one method at a time // case-based: Modify an old program } }