일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- visual studio code
- Emmet
- webstorm
- GitHub Mirroring
- 티스토리 초대장
- GitLab Mirroring
- eslint-import-resolver-typescript
- code 설치
- 실행시간 측정
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- 네이버 클라우드 플랫폼
- 프리티어
- GitHub 미러링
- gitlab 연동
- '티스토리 초대장/ 티스토리초대'
- React Native
- 티스토리초대
- Path Alias
- GitLab미러링
- code 세팅
- 유니옥션
- 초대장
- react native #gradle
- code .
- 음료같은녹즙
- currentTimeMillis
- settings sync
- 티스토리 초대장/ 티스토리초대
- visual studio code cli
- 니돈내먹
- Today
- Total
목록전체 글 (105)
방치하기
import java.util.*; class Calc { public int a,b; public Calc(int a,int b){ this.a=a; this.b=b; } public void option(String opt) { if (opt.equals("+")) { this.plus(); } else if (opt.equals("-")) { this.minus(); } else if (opt.equals("/")) { this.nanum(); } else if (opt.equals("*")) { this.gob(); } else { } } public void plus() { System.out.printf("더한 결과 :%d\n",this.a+this.b); } public void minus(..
using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Calc { public int a, b; public Calc(int a, int b) { this.a = a; this.b = b; } public void option(String opt) { if (opt=="+") { this.plus(); } else if (opt=="-") { this.minus(); } else if (opt=="/") { this.nanum(); } else if (opt=="*") { this.gob(); } else { } } public void plus() { System.Con..
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;..