함수 // 두 점 (x,y) (x1,y1)간의 거리를 구하기
/* class Exercise1 { 두 점 (x,y)와 (x1,y1)간의 거리를 구한다. static double getDistance(int x, int y, int x1, int y1) { */ //거리 공식 = 루트{(y1-y)2승 + (x1-x)2승}//루트함수와 승수함수 찾기 double dis = getDistance(1,1,2,2); System.out.println("거리 : "+ dis); } static double getDistance(int x, int y, int x1, int y1) { double dx,dy; double result; //루트 : sqrt승수 : pow dx = Math.pow(y1-y, 2); dy = Math.pow(x1-x, 2); result = Ma..
함수// 암호화 복호화 v.2
/* char abcCode[] = {// a ~ z '`', '~', '!', '@', '#',// a b c d e '$', '%', '^', '&', '*', '(', ')', '-', '_', '+', '=', '|', '[', ']', '{', '}', ';', ':', ',', '.', '/' }; char numCode[] = {// 0 ~ 9 'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p' }; */ String str = "abcd0123"; System.out.println("원본: "+str); String scode = security(str); System.out.println("암호화:" + scode); String dcode = deci..
암호화 복호화 v.1
char abcCode[] = {// a ~ z '`', '~', '!', '@', '#',// a b c d e '$', '%', '^', '&', '*', '(', ')', '-', '_', '+', '=', '|', '[', ']', '{', '}', ';', ':', ',', '.', '/' }; char numCode[] = {// 0 ~ 9 'q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p' }; // 암호화 //String src = "abc012"; String src = "hello0237"; String resultCode = ""; for (int i = 0; i < src.length(); i++) { char ch = src.charAt(i); ..