일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- jquery
- 다형성
- 추상클래스
- 페이징
- 전자정부
- full text indexing
- Random
- 상속
- 로또
- 자바
- Login with OAuth Authentication
- 이클립스
- 전체
- 상속예제
- 단축키
- 형변환
- 다운캐스팅
- 스프링
- 가변인자
- Full text
- angular2
- 업캐스팅
- while
- 25가지 효율적인 sql작성법
- Validations
- 전체텍스트
- IBatis procedure
- 자바 야구게임
- 야구게임
- Today
- Total
목록분류 전체보기 (448)
nalaolla
package test.com; import java.util.Scanner; public class Test04Game2 { final static String SID = "aa"; final static String SPWD = "bb"; final static String TITLE = "[GAME PROGRAM]"; final static String LINE = "=============================="; static int loginResult = 0; public static void main(String[] args) { // TODO Auto-generated method stub //1. 게임실행 //2. 로그인 (id = aa, pwd = bb) //3. 정상로그인 >..
package test.com; public class Test04Game { public static void main(String[] args) { // TODO Auto-generated method stub final String TITLE = "[game program]"; // 타이틀 ment 초기화 String line = "=================================="; // 라인설정 //1. 로그인 //1_1. 아이디/패스워드 검증 (id : danielkim, pwd : 1234) // >> 맞으면 게임진행, 틀리면 잘못입력 //2. 맞으면 게임진행 //2_1. 캐릭터 선택 (1.인간 2.괴물 3.로봇) //인간 - 공격력 5, 방어력 6 //괴물 - 공격력 8, 방어..
package test.com; public class Test03VendingMachine2 { public static void main(String[] args) { // TODO Auto-generated method stub // 콜라500, 사이다700, 쥬스1000 final String TITLE = "[자판기 프로그램]"; // 타이틀 ment 초기화 String line = "=================================="; // 라인설정 System.out.println(TITLE); System.out.println(line); System.out.println("금액을 투입하세요"); int money = 1499; System.out.println("투입금액 : ..
package test.com; import java.util.Scanner; public class Test03VendingMachine { public static void main(String[] args) { // TODO Auto-generated method stub // 콜라500, 사이다700, 쥬스1000 final String TITLE = "[자판기 프로그램]"; //타이틀 ment 초기화 String line = "=================================="; //라인설정 String prod1Name = "콜라"; String prod2Name = "사이다"; String prod3Name = "쥬스"; int prod1Price = 500; //제품1 금액 i..
package test.com; import java.util.Scanner; public class Test03PhoneBook { public static void main(String[] args) { // TODO Auto-generated method stub int choice; while(true) { showMenu(); choice = keyboard.nextInt(); keyboard.nextLine(); switch (choice) { case 1: readData(); break; case 2: System.out.println("프로그램을 종료합니다."); return; } } } public static void showMenu() { System.out.println("선택하세..
package test.com; public class Test02Score { public static void main(String[] args) { //성적처리 프로그램 String nKor = "국어"; String nEng = "영어"; String nMath = "수학"; int korScore = 50; int engScore = 34; int mathScore = 28; int totalSum = korScore + engScore + mathScore; //double totalAvg = (double) totalSum / 3; double totalAvg = Math.round(((double) totalSum / 3)*10)/10d ; -->소수2째자리까지만 노출시키고자 한다. Str..
package test.com; public class Test02Pay { public static void main(String[] args) { // TODO Auto-generated method stub final int pay = 5000; int workHour = 9; if (workHour > 8) { System.out.println("기본금액 : " + pay * 8); System.out.println("추가수당 : " + (int) (1.5 * pay * (workHour - 8)) ); System.out.println("지급금액 : " + (int) ((pay *8) + 1.5 * pay * (workHour - 8)) ); } else { System.out.println("..
package test.com; public class Test01ifelse { public static void main(String[] args) { // 제어문 : 분기문, 반복문 // 분기문 : if, if~else, if~else if~else if..., if~else if~else // switch~case 비교대상: ~default: // 반복문 : for, while, do~while int su = 2; if (su == 0) { System.out.println("AAA"); } else if (su == 1) { System.out.println("BBB"); } else if (su == 2) { System.out.println("CCC"); } else { System.out..
1.데이터와 비즈니스 어플리케이션을 잘 알아야 한다. 동일한 정보는 다른 비즈니스 데이터 원천으로부터 검색될 수 있다. 이러한 원천에 익숙해야 한다. 당신은 당신의 데이터베이스 안의 데이터의 크기와 분포를 반드시 알아야 한다. 또한 SQL을 작성하기 전에 비즈니스 개체 안의 관계와 같은 데이터 모델을 전체적으로 이해해야 한다. 이러한 이해는 당신이 여러 테이블에서 정보를 검색하는데 있어서 보다 좋은 쿼리를 작성할 수 있다. DESIGNER/2000과 같은 CASE TOOLS은 다른 비즈니스와 데이터베이스 객체사이의 관계 를 문서화 하는데 좋은 역할을 한다. 2.실제 데이터를 가지고 당신의 쿼리를 검사하라. 대부분의 조직은 개발, 검사, 제품의 3가지 데이터베이스 환경을 가진다. 프로그래머는 어플리케이션을..
SELECT DATABASEPROPERTY('Northwind', 'IsFullTextEnabled') 전체 텍스트 시스템 저장 프로시저, Transact-SQL 함수 및 SQL Server 엔터프라이즈 관리자를 사용하여 전체 텍스트 검색 정보를 수집할 수 있다. 데이터베이스, 카탈로그, 테이블, 열의 각 레벨에 대해 메타데이터와 상태 정보를 검색할 수 있다. ( ※ 각 항목을 클릭하세요 ) 시스템 저장 프로시저 사용 다음 표에 열거한 전체 텍스트 시스템 저장 프로시저를 사용하여 전체 텍스트 인덱스에 관한 정보를 입수할 수 있다. Microsoft Search 서비스에서는 전체 텍스트 인덱스와 전체 텍스트 카탈로그의 두 구조를 사용하여 전체 텍스트 검색을 구현한다. 저장 프로시저 기능 sp_help_fu..