public class cipher { /* CPSC 333 Programming Assignment 1: Simple Encrypter Due Tuesday 11/16 This assignment familiarizes you with java IO operations that you would need later for network programming. It's a "warmup" exercise. A simple cryptic cipher is to map ascii charaters to other ascii charaters. Consider the following code: */ static char scramble1(char c) { return (char) (2 + ((int) c)); } static String encryptString(String A) { String Newstring = ""; int length = A.length(); for(int i=0;i