일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- TextField
- Android
- 안드로이드스튜디오
- android java
- storyboard
- 예외처리
- 준코딩
- 백준
- 안드로이드
- 보호와 보안
- 커스텀팝업
- Swift
- FLUTTER
- 연결리스트
- Android Studio
- Xcode
- IOS
- BAEKJOON
- customPopup
- C언어
- xocde
- 자바
- swift baekjoon
- 링크드리스트
- deeplink
- 버블정렬
- 플러터
- label
- Firebase
- text to speech
- Today
- Total
목록Java (2)
준코딩
package algorithm; public class IntStack { private int max; private int ptr; private int[] stk; public class EmptyIntStackException extends RuntimeException { public EmptyIntStackException() { } } public class OverflowIntStackException extends RuntimeException { public OverflowIntStackException() { } } public IntStack(int capacity) { ptr = 0; max = capacity; try { stk = new int[max]; } catch (Ou..
1.int형 범위 숫자만 입력가능2. 공백입력 불가3. 10개의 숫자 입력 import java.util.Scanner; public class BubbleSort { public static void main(String[] args) { int[] arr = new int[10]; Scanner scan = new Scanner(System.in);System.out.println("공백입력불가");for (int i = 0; i < arr.length; i++) {while (true) {System.out.print((i + 1) + "번째 숫자 입력: ");try {arr[i] = Integer.parseInt(scan.nextLine());} catch (NumberFormatException..