일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 티스토리 초대장
- Path Alias
- 프리티어
- '티스토리 초대장/ 티스토리초대'
- react native #gradle
- gitlab 연동
- settings sync
- visual studio code
- GitHub Mirroring
- GitHub 미러링
- React Native
- 초대장
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- 음료같은녹즙
- GitLab미러링
- 니돈내먹
- code .
- 티스토리초대
- eslint-import-resolver-typescript
- webstorm
- 실행시간 측정
- GitLab Mirroring
- currentTimeMillis
- code 설치
- code 세팅
- 유니옥션
- 티스토리 초대장/ 티스토리초대
- 네이버 클라우드 플랫폼
- Emmet
- 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;..