일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 실행시간 측정
- '티스토리 초대장/ 티스토리초대'
- webstorm
- Emmet
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- react native #gradle
- Path Alias
- code 세팅
- code .
- 티스토리초대
- currentTimeMillis
- 네이버 클라우드 플랫폼
- code 설치
- GitLab미러링
- 유니옥션
- GitHub Mirroring
- GitLab Mirroring
- visual studio code cli
- eslint-import-resolver-typescript
- settings sync
- GitHub 미러링
- 니돈내먹
- gitlab 연동
- 티스토리 초대장
- 프리티어
- 초대장
- 음료같은녹즙
- visual studio code
- 티스토리 초대장/ 티스토리초대
- React Native
Archives
- Today
- Total
목록2009/07/18 (1)
방치하기
현금 입출기
import java.io.*; class Set_Cash{ String Name="이준호";//하나는 일괄 적으로 정해지는 변수를 만들어봤습니다 . private int cash; private int in; private int out; void Cash(int a){//여기에 Static 붙이면 에러 cash=a; } int Cash(){//메소드 오버로딩 return cash; } void In(int a) { in=a; } int In() {//메소드 오버로딩 cash+=in; return cash; } void Out(int a) { in=a; } int Out() {//메소드 오버로딩 cash-=in; return cash; } } class Cash { public static void m..
홍익대 Java/과제
2009. 7. 18. 21:02