import java.io.*; public class cipher2 { /* 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 codeString(String A, String Operation) { String Newstring = ""; char temp = ' '; int length = A.length(); for(int i=0;i