일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- '티스토리 초대장/ 티스토리초대'
- GitHub Mirroring
- 유니옥션
- eslint-import-resolver-typescript
- visual studio code cli
- currentTimeMillis
- GitHub 미러링
- 프리티어
- React Native
- 니돈내먹
- react native #gradle
- settings sync
- 네이버 클라우드 플랫폼
- 티스토리 초대장/ 티스토리초대
- 음료같은녹즙
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- visual studio code
- 실행시간 측정
- code 세팅
- webstorm
- Emmet
- code 설치
- 티스토리 초대장
- GitLab Mirroring
- code .
- 초대장
- GitLab미러링
- gitlab 연동
- 티스토리초대
- Path Alias
- Today
- Total
목록전체 글 (105)
방치하기
class CirTest { private double r; double temp; CirTest(double a){ this.r=a; } public double setR(double a) { r=a; return r; } public double rCal() { temp=r*6.28; return temp; } public double r2Cal() { temp=r*r*3.14; return temp; } } class Circle { public static void main(String[] args) { CirTest jh=new CirTest(10); System.out.println("넓이는"+jh.r2Cal()); System.out.println("원주는"+jh.rCal()); } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class WebDB { private String name; private String id; private String 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; ..
class WebDB { private String name; privateString id; privateString pw; //이름 관련 void setName(String a) { name=a; } String getName(String a) { setName(a); return name; } //아이디 관련 void setID(String a) { id=a; } StringgetID(String a) { setID(a); return id; } // 패스워드 관련 void setPW(String a) { pw=a; } StringgetPW(String a) { setPW(a); return id; } //부울형 boolean passOK(String a, String b){ if (pw==a &&..