일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- code 설치
- 티스토리초대
- GitHub 미러링
- react native #gradle
- webstorm
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- visual studio code cli
- 티스토리 초대장
- code 세팅
- code .
- '티스토리 초대장/ 티스토리초대'
- 실행시간 측정
- GitHub Mirroring
- 프리티어
- 티스토리 초대장/ 티스토리초대
- GitLab미러링
- 네이버 클라우드 플랫폼
- 초대장
- React Native
- settings sync
- GitLab Mirroring
- Emmet
- 유니옥션
- eslint-import-resolver-typescript
- visual studio code
- Path Alias
- gitlab 연동
- 음료같은녹즙
- 니돈내먹
- currentTimeMillis
Archives
- Today
- Total
목록전체 글 (105)
방치하기
X note 에 키보드랑 마우스 인식용
OS X 에서 주로 업데이트 이후 마우스 키보드 인식이 안된다 . 그때 쓰는 것이니 헬퍼 이용해서 설치하시길.
유용한 프로그램들/Os X
2009. 7. 17. 00:50
in.read in.skip 사칙 연산자
import java.io.*;//read 를 위해 붙였습니다. class main{ public static void main(String[] args) throws Exception { int a; String num1 = args[0]; String num2 = args[1]; System.out.println("num1 = " + num1); System.out.println("num2 = " + num2); while(true) { System.out.print("사칙 연산자중 하나를 입력하시오 : (Ex: +)\n종료는 E를 입력해주세요.\n"); a=System.in.read(); System.in.skip(5); // 이거 엔터키 버려주는 if((char)a=='+') { int sum =..
홍익대 Java/과제
2009. 7. 16. 19:58