목록STUDY/K-DIGITAL (33)
정구리의 우주정복
간단하게 사람 객체를 만들어 버스와 지하철을 태워보는 시나리오이다. Main.java public class Main { public static void main(String[] args) { Worker a = new Worker("A"); Worker b = new Worker("B"); Subway no1 = new Subway("1"); Bus no400 = new Bus("400"); Bus no500 = new Bus("500"); a.takeSubway(no1); b.takeBus(no500); a.showWorkerInfo(); b.showWorkerInfo(); no1.showSubInfo(); no400.showBusInfo(); no500.showBusInfo(); } } 우선 ma..
맥북 재부팅 하면 왜 워크스페이스가 안보일까 ? 정말 어이없어 1.우 클릭 후 -> Click Import -> Import 2. existing projects into workspace 클릭 (검색하면 됩니다) 3. select root directory 에 원하는 dir 선택하기
객체를 배열로 만들어서 사용하는 방법을 알아보아요옹 만약 Drink.java 에 name,totalNum,totalPrice 가 정의되어있다고 가정하고 DrinkMain.java 에 Drink 객체를 생성해서 사용한다고 가정해보자 만약 객체를 3개 생성한다고 하면 Drink d1 = new Drink(); Drink d2 = new Drink(); Drink d3 = new Drink(); d1.name = "정구링"; . . . 이런식으로 사용할 수 있다 하지만 객체를 배열로 생성한다면 어떨까 ?!?! Scanner sc = new Scanner(System.in); Drink d[] = new Drink[3]; for(int i=0; i 어떤거 장바구니에 담겼는지 출력하기 //담긴 애들 총 매출 현황..
자바에서 난수를 만들기 위해 Math.random 을 사용한다 대략적인 사용법 int random; random = Math.random(); 이렇게 하면 0-1 사이의 소수점이 붙은 친구가 생성된다 0.xxxxxx 이렇게 그렇다면 범위를 지정하고싶다면 어떻게 해야할까 ? int random; random = (int)(Math.random()*10 +1); 이렇게 해줘야한다 이렇게하면 1-10 까지의 수를 얻을 수 있다 Math.random 앞에 (int) 로 형변환을 해주는 것은 Math.random 은 Double type 을 갖기 때문이다. 맨 뒤에 +1 을 붙여주지 않으면 0-9 까지의 수를 얻을 수 있다 10이 들어간 자리에 다른 숫자를 넣어주면 원하는 범위로 설정할 수 있다 그렇다면 배수를 ..
public static void main(String[] args) { int month = 3; String season = ""; switch(month) { case 3: case 4: case 5: season ="봄"; break; case 6: case 7: case 8: season ="여름"; break; case 9: case 10: case 11: season = "가을"; break; case 12: case 1: case 2: season = "겨울"; break; default: season ="존재하지 않는 달"; } System.out.println(season); } Scanner 로 입력 받아서 원하는 월을 입력했을 때 출력되는 것을 확인하는 모습이다. 자바는 위에서부터 ..
public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("1. Scissor 2. Rock 3. Paper"); System.out.print("> "); int my = sc.nextInt(); int com = (int)( Math.random()*3)+1; // 1~3 if (my >= 1 && my
##서버와 연결하지 않아 실제로 동작하지는 않는 form 입니다. 서버 연동방법은 별도로 명시하지 않습니다. ## 1. 내가 만든 방식 HTML Email Password Log in form 태그 안에 div 태그를 만들어 p태그와 input 태그를 넣어줬다. input 태그에는 place holder 를 사용해서 내용을 명시해줬다 button 태그를 사용해서 로그인 버튼을 만들어줬음 CSS @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1..
*실제 a 태그에 href 값을 넣지 않아 동작하지 않습니다 공부용으로 봐주세요* HTML Real Estate Type All One room 1.5 rooms Two rooms Three rooms Officetel Apartment CSS @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap'); body { /* 색 줄높이를 미리 잡고 시작한다 */ font-family: 'Noto Sans KR', sans-serif; color : #222; line-height: 1.5em; } /* 보통 바디태그에 주고나서 a태그에 색상을 주는게 기본이다!!! (상속..