일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- eslint-import-resolver-typescript
- 네이버 클라우드 플랫폼
- 프리티어
- visual studio code cli
- code .
- Emmet
- 티스토리초대
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- code 세팅
- Path Alias
- GitLab Mirroring
- currentTimeMillis
- 티스토리 초대장
- React Native
- visual studio code
- GitLab미러링
- gitlab 연동
- 초대장
- 티스토리 초대장/ 티스토리초대
- 음료같은녹즙
- code 설치
- settings sync
- webstorm
- react native #gradle
- 니돈내먹
- GitHub 미러링
- '티스토리 초대장/ 티스토리초대'
- 유니옥션
- 실행시간 측정
- GitHub Mirroring
- Today
- Total
목록전체 글 (105)
방치하기
import java.util.*; import java.util.*; import java.io.*; class 숫자놀이{ public static void main(String [] arg)throws Exception { //int now=(int)(Math.random()*50)+1; 메스 랜덤 이용 int count=0; Random random =new Random(System.currentTimeMillis()); //유틸 안에 Random은 그냥도 되지만 지금처럼 시간을 불러와서 난수 생성도 가능 int now =random.nextInt(50); Scanner scan= new Scanner(System.in); System.out.println("정답입니다"+now); while (tr..
import java.util.*; import java.io.*; class WebDB { private String name; privateString id; privateString pw; //이름 관련 public WebDB(){ } public WebDB(String a){ this.name=a; } public WebDB(String a,String b){ this.name=a; this.id=b; } public WebDB(String a,String b,String c){ this.name=a; this.id=b; this.pw=c; } void setName(String a) { name=a; } String getName(String a) { setName(a); return name;..
class StaticTest { static int a =10; int b=20; } class StaticTest01 { public static void main(String [] args) { System.out.println(StaticTest.a); StaticTest s1 =new StaticTest(); StaticTest s2= new StaticTest(); System.out.println(s1.a+" "+s2.a); System.out.println(s1.b+" "+s2.b); s1.a=100; System.out.println(s1.a); System.out.println(s2.a); s1.b=200; System.out.println(s1.b); System.out.println..