Posted on 2012. 1. 18. 16:11
Filed Under ANDROID/기본

cmd /u
chcp 65001
(콘솔창->속성->글꼴변경)
adb logcat


* 특정 태그 로그만 보기
adb logcat *:s TAG:v


Posted on 2012. 1. 4. 11:57
Filed Under Java/Easy Tip

// 정수난수
Random rnd = new Random();
int a = rnd.nextInt();    // -2147483648 ~ 2147483647 사이의 정수
int b = rnd.nextInt(500);    // 0 ~ 499 사이의 정수
int c = rnd.nextInt(10+1)+30;    // 30 ~ 40 사이의 정수
int d = rnd.nextInt(500+1)+500;    // 500 ~ 1000 사이의 정수


// 실수난수
double a = Math.random();

About

by 청지인

Notice

Counter

· Total
:
· Today
:
· Yesterday
: