일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- React Native
- code .
- 실행시간 측정
- react native #gradle
- visual studio code cli
- currentTimeMillis
- GitHub Mirroring
- GitLab Mirroring
- '티스토리 초대장/ 티스토리초대'
- visual studio code
- 티스토리초대
- 유니옥션
- 티스토리 초대장
- 음료같은녹즙
- 프리티어
- 네이버 클라우드 플랫폼
- gitlab 연동
- eslint-import-resolver-typescript
- GitLab미러링
- 초대장
- code 세팅
- 니돈내먹
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- settings sync
- Emmet
- 티스토리 초대장/ 티스토리초대
- code 설치
- Path Alias
- GitHub 미러링
- webstorm
- Today
- Total
목록2009/07/21 (5)
방치하기
import java.util.*; import java.io.*; class Student { private String name; private int major []=new int [3]; private int sum; private double avg=0; public void setName(){ Scanner scan=new Scanner(System.in); System.out.println("학생의 이름을 입력해주세요"); this.name =scan.next(); } public void setMajor(){ for(int i=0;i
import java.util.*; class height{ public static void main(String [] arg) { Scanner scan= new Scanner(System.in); System.out.printf("당신의 키를 입력해주세요\n"); int height=scan.nextInt(); double normal_weight=(double)((height-100)*0.9); System.out.printf("당신의 키에 표준 체중은 : %4.2f kg 입니다" , normal_weight); System.out.printf("당신의 몸무게를 입력해주세요\n"); double weight=scan.nextDouble(); if (weight==normal_weight) { Sy..
import java.util.*; import java.util.*; import java.io.*; class 숫자놀이{ public static void main(String [] arg)throws Exception { //int now=(int)(Math.random()*50)+1; 메스 랜덤 이용 int count=0; Random random =new Random(System.currentTimeMillis()); //유틸 안에 Random은 그냥도 되지만 지금처럼 시간을 불러와서 난수 생성도 가능 int now =random.nextInt(50); Scanner scan= new Scanner(System.in); System.out.println("정답입니다"+now); while (tr..
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;..
class StaticTest { static int a =10; int b=20; } class StaticTest01 { public static void main(String [] args) { System.out.println(StaticTest.a); StaticTest s1 =new StaticTest(); StaticTest s2= new StaticTest(); System.out.println(s1.a+" "+s2.a); System.out.println(s1.b+" "+s2.b); s1.a=100; System.out.println(s1.a); System.out.println(s2.a); s1.b=200; System.out.println(s1.b); System.out.println..