w07_200311436_차석환.zip |
목차 chapter 07 실습 과제1. 구현 실험 평가 chapter 07 실습 과제2. 분석 구현 실험 평가 본문 nterface Crypto public char encript(char ch); public char decript(char ch); class AlgorithmTest private class NewAlgorithm implements Crypto public char encript(char ch) int input = (int) ch; if (input>65530) input -= 65535; input += 5; return (char)input; public char decript(char ch) int input = (int) ch; if(input <= 5) input += 65535; input -= 5; return (char) input; public void run() char e = `e`; char h = `h`; char a = `a`; char n = `n`; System.out.println( 평 문 : +e+h+a+n); Crypto chiper = new NewAlgorithm(); e = chiper.encript(e); h = chiper.encript(h); a = chiper.encript(a); n = chiper.encript(n); System.out.println( 암호문 : +e+h+a+n); e = chiper.decript(e); h = chiper.decript(h); a = chiper.decript(a); n = chiper.decript(n); 하고 싶은 말 이한출판사 자바프로그래밍(java programming) 7장(7chapter) 워크북(workbook) 실습과제 1,2입니다. 키워드 7장, 워크북, 자바프로그래밍, 이한출판사 |
2017년 3월 31일 금요일
이한출판사 자바프로그래밍(java programming) 7장(7chapter) 워크북(workbook)
이한출판사 자바프로그래밍(java programming) 7장(7chapter) 워크북(workbook)
피드 구독하기:
댓글 (Atom)
댓글 없음:
댓글 쓰기