일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- #JAVASCRIPT
- #다차원포인터
- docker example
- 하이퍼레저패브릭
- hyperledger transaction
- html youtube
- html plug-in
- #3차원배열
- #android activity
- html charset
- html5 new tag
- #성적관리프로그램
- #자바상속#자바이즈어#is~a
- border-box
- #2차원배열
- 토큰경제
- #bubbleSort
- #C++ 연산자함수오버로딩
- #C++ has~a
- mac terminal command
- html code
- #1차원배열
- git flow
- html object
- html video
- relative path
- html multimedia
- html id
- #binary
- #CallByAddress
- Today
- Total
A sentimental robot
import java.util.TreeMap; import java.util.Iterator; import java.util.Scanner; import java.util.*; public class Test02 { public static void main(String[] args) { Pro tt = new Pro(); Scanner sc = new Scanner(System.in); do { System.out.println("====성적처리관리프로그램입니다.===="); System.out.println("1.성적입력\n2.성적 전체 출력\n3.학번 검색 출력\n종료하시려면 -1을 입력"); int i; i = sc.nextInt(); if (i == -1) { break; } switch (i)..
import java.util.TreeMap; public class CTreeMap { public static void main(String[] args) { TreeMap tm = new TreeMap(); tm.put("C", 100); tm.put("A", 90); tm.put("B", 40); System.out.println(tm); } } TreeMap 정렬 출력 import java.util.Iterator; import java.util.TreeMap; public class CTreeMap2 { public static void main(String[] args) { TreeMap tm = new TreeMap(); for (int i = 25; i >= 0 ; i--) { char ..
public class Test02 { public static void main(String[] args) { int []arr=new int[4]; for(int i=0; i
public class Test01 implements Runnable { private int pay; public Test01() { pay = 10000; } @Override public synchronized void run() { for(int i=0; pay!=0 ;i++){ try{ Thread.sleep(1000); pay-=1000; System.out.print(Thread.currentThread().getName()); System.out.println(" 현재금액 : " +pay); // 이 두 개의 메소드는 동기화 처리에서만 사용가능 notify(); // son Thread에게 넘겨줌 wait(); // wait를 나중에 선언, mom Thread는 멈춤 }catch(Inte..