[이한출판사] 자바프로그래밍(java programming) 7장(7chapter) 워크북(workbook)

이미지
준비중입니다.
※ 미리보기 이미지는 최대 20페이지까지만 지원합니다.
  • 분야
  • 등록일
  • 페이지/형식
  • 구매가격
  • 적립금
자료 다운로드  네이버 로그인
소개글
[이한출판사] 자바프로그래밍(java programming) 7장(7chapter) 워크북(workbook)에 대한 자료입니다.
목차
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
하고 싶은 말
[이한출판사] 자바프로그래밍(java programming) 7장(7chapter) 워크북(workbook) 실습과제 1,2입니다.