일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바 정규표현식 예제
- Oracle기초
- 스프링 crud
- 프로그래머스 쿼리문
- crud게시판
- jsp 날짜팝업
- 2020정보처리기사실기
- 자바배열예제
- html기초
- 2020정보처리기사실기요약
- 날짜지정팝업
- 정보처리기사실기정리
- 스프링게시판만들기
- 프로그래머스 MYSQL
- CRUD게시판만들기
- 자바연산자
- 오라클설치
- 오버라이딩
- 스프링 CRUD게시판
- spring crud
- js datepicker
- jsp게시판만들기
- spring crud게시판
- PLSQL
- 2020정보처리기사실기정리
- 게시판만들기
- 프로그래머스 SQL
- jsp 팝업띄우기
- 정처기실기정리
- 자바기초
- Today
- Total
목록Language/JAVA (43)
영보의 SystemOut.log
버블정렬 (Bubble Sort) 서로 인접한 두 원소를 검사하여 크기가 큰 순서대로 되어 있지 않으면 서로 교환 구현이 매우 간단 package threeDay; // 버블 정렬 public class ExampleTwo { public static void main ( String [] args) { int [] dataList = {9,1,8,2,7,3,6,4,5}; int count = 0;// 반복 횟수 while(true) { count ++; boolean sw = false ; for ( int i = 0; i dataList[i + 1]) { int temp = dataList[i]; dataList[i]..
선택정렬 Selection Sort 정렬 알고리즘 중 가장 원시적인 방법 주어진 리스트에서 최소값을 찾아 맨 앞에 있는 데이터와 바꾼다 나머지 값들 중 최소값을 찾아 위와 같은 방법으로 반복 package threeDay; // 선택 정렬 public class ExampleOne { public static void main ( String [] args) { int [] dataList = {9,1,8,2,7,3,6,4,5}; int minIndex = 0 ; for ( int i = 0; i dataList[j]) { m..
1~200 사이의 값 중 하나를 추출한다 (random) Scanner를 이용하여 사용자가 입력한 값과 비교한 후, up, down 또는 정답을 표기한다 총 몇회에 걸쳐서 정답을 맞췄는지 횟수를 출력한다. package twoDay; import java.io.InputStream; import java.util.ArrayList; import java.util.Scanner; public class random { public static void main(String[] args) { ArrayList numList = new ArrayList(); int pcNum = (int) (Math.random() * 200) + 1; int count = 0; InputStream is = System.i..
Windows에서는 \ 로 쓰이던 경로와 C드라이브가 Mac에서는 / 와 User로 쓰여서 헷갈려서 적어본다. package twoDay; import java.io.*; public class FIleTest { public static void main( String [] args) throws Exception { // full path File file = new File("/Users/hyeonboyeong/Desktop/education/sample.txt"); System.out.println("존재 여부 : " + file.exists()); System.out.println("폴더 여부 : " + file.isDirectory()); System.out.println("파일 여부 : " ..