일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 cli
- gitlab 연동
- '티스토리 초대장/ 티스토리초대'
- 초대장
- code 세팅
- currentTimeMillis
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- GitLab Mirroring
- GitHub Mirroring
- webstorm
- 티스토리 초대장/ 티스토리초대
- 유니옥션
- GitLab미러링
- Emmet
- 음료같은녹즙
- visual studio code
- settings sync
- Path Alias
- react native #gradle
- 네이버 클라우드 플랫폼
- 프리티어
- GitHub 미러링
- code 설치
- 티스토리초대
- eslint-import-resolver-typescript
- code .
- 니돈내먹
- React Native
- Today
- Total
목록전체 글 (105)
방치하기
import java.util.*; class Members{ public static void main(String [] arg){ Scanner scan=new Scanner("김 2 3 4 5"); //공백별로 짤라서 저장하고 있음 while(scan.hasNext())//다음 내용이 있는 동안 루프 { System.out.println(scan.next()); // 이때는 아무거나 다 받음 nextInt 는 인트형만 } scan =new Scanner(System.in); int a =scan.nextInt();//이건 인트형 System.out.println(a); String b=scan.next(); System.out.println(b); } }
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; } //아이디 관련 void setID(String a) { id=..
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class CirTest { private double r; double temp; public 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 sta..