목록전체 글 (189)
개발로그필름
WebMarket/WebContent/addProduct.jsp 상품 등록 상품 코드 상품명 가격 상세 정보 제조사 분류 재고 수 상태 신규 제품 중고 제품 재생 제품 WebMarket/src/dao/ProductRepository.java package dao; import java.util.ArrayList; import dto.Product; public class ProductRepository { private ArrayList listOfProducts = new ArrayList(); private static ProductRepository instance = new ProductRepository(); public static ProductRepository getInstance() { ..
# 집합 (set) # 중복 안됨, 순서 없음 my_set = {1,2,3,3,3} print(my_set) # {1,2,3} java = {"유재석", "김태호", "양세형"} python = set(["유재석", "박명수"]) # 교집합 (java와 python을 모두 할 수 있는 개발자) print(java & python) print(java.intersection(python)) # 합집합 (java 할 수 있거나 python 할 수 있는 개발자) print(java | python) print(java.union(python)) # 차집합 (java 할 수 있지만 python은 할 줄 모르는 개발자) print(java - python) print(java.difference(python)) ..
# 자료구조의 변경 # 커피숍 menu = {"커피", "우유", "주스"} print(menu, type(menu)) # {} menu = list(menu) print(menu, type(menu)) # [] menu = tuple(menu) print(menu, type(menu)) # () menu = set(menu) print(menu, type(menu)) # {}
WebMarket/src/dao/ProductRepository.java package dao; import java.util.ArrayList; import dto.Product; public class ProductRepository { private ArrayList listOfProducts = new ArrayList(); public ProductRepository() { Product phone = new Product("P1234", "iPhone 6s", 800000); phone.setDescription("4.7-inch, 1334X750 Renina HD display, 8-megapixel iSight Camera"); phone.setCategory("Smart Phone"); ..
Quiz 당신의 학교에서는 파이썬 코딩 대회를 주최합니다. 참석률을 높이기 위해 댓글 이벤트를 진행하기로 하였습니다. 댓글 작성자들 중에 추첨을 통해 1명은 치킨, 3명은 커피 쿠폰을 받게 됩니다. 추첨 프로그램을 작성하시오 조건 조건 1 : 편의상 댓글은 20명이 작성하였고 아이디는 1~20이라고 가정 조건 2 : 댓글 내용과 상관 없이 무작위로 추첨하되 중복 불가 조건 3 : random 모듈의 shuffle과 sample을 활용 코드 from random import * users = range(1, 21) # 1부터 20까지 숫자를 생성 users = list(users) # range타입을 list타입으로 변경 shuffle(users) # 섞기 winners = sample(users, 4) ..
weather = input("오늘 날씨는 어때요? ") if weather == "비" or weather == "눈": print("우산을 챙기세요") elif weather == "미세먼지": print("마스크를 챙기세요") else: print("준비물 필요 없어요") temp = int(input("기온은 어때요? ")) if 30
WebMarket/src/dto/Product.java package dto; import java.io.Serializable; public class Product implements Serializable { // private static final long serialVersionUID = -427474700572038677000L;; private String productId; // 상품 아이디 private String pname; // 상품명 private Integer unitPrice; // 상품 가격 private String description; // 상품 설명 private String manufacturer; // 제조사 private String category; // 분류..
for waiting_no in [0, 1, 2, 3, 4]: print("대기번호 : {0}".format(waiting_no)) for waiting_no in range(5): # 0, 1, 2, 3, 4 print("대기번호 : {0}".format(waiting_no)) for waiting_no in range(1, 6): # 1, 2, 3, 4, 5 print("대기번호 : {0}".format(waiting_no)) starbucks = ["아이언맨", "토르", "아이엠 그루트"] for customer in starbucks: print("{0}, 커피가 준비되었습니다.".format(customer))