알고리즘19 로또 번호 생성하기2 (Javascript) li{ margin: 10px; } 로또 번호 추출 const lotto = document.querySelector('.js-lotto') const btn = document.querySelector('button') const lotto_number = [] function handleLotto(){ let arr = []; for(let i = 0; i 2020. 8. 10. 로또 번호 생성하기 (Javascript) arr.push(Math.floor(Math.random()*45)+1); 랜덤 함수, 배열 요소 추가 함수를 이용한 로또 번호 추출 로직 for(let c = 0; c 2020. 7. 27. 배열 요소 중 절댓값이 제일 작은 값 찾기(Java) 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 import java.util.Scanner; import java.util.Arrays; public class Solution { public static void main(String[] args) { int[] arr = new int[5]; Scanner sc = new Scanner(System.in); for(int i = 1; i 2020. 7. 13. 배열 요소 중 절댓값이 제일 큰 값 찾기(Java) 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 import java.util.Scanner; import java.util.Arrays; public class Solution { public static void main(String[] args) { int[] arr = new int[5]; Scanner sc = new Scanner(System.in); for(int i = 1; i 2020. 7. 13. 이전 1 2 3 4 5 다음