분류 전체보기76 Object(1)(ECMAScript 6) 1 let object = {ob1: 1, ob1 : 2}; cs 객체에 key 값이 같을 경우 마지막에 입력한 값으로 대체가 된다. 출력 화면 2020. 7. 10. 5의 배수의 합과 개수 구하기(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 28 29 import java.util.Scanner; public class Example { public static void main(String[] args) { Scanner scanf = new Scanner(System.in); int count = 0; int sum = 0; int a = 0; int b = 0; System.out.print("최대값을 입력하세요 : "); int j = scanf.nextInt(); for (int i = 1; i 2020. 7. 10. 버블 정렬(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 28 29 public class bubble { public static void main(String[] args) { int i = 0; int j = 0; int k = 0; int a = 0; int arr[] = {1, 3, 4, 6, 7, 9, 2, 5, 8, 0}; while(i 2020. 7. 10. 배열을 이용해 삼각형 모양으로 값 넣기(2)(Java) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 public class arr_tri{ public static void main(String[] args) { int i = 0; int j = 0; int k = 0; int b = 9; int arr[][] = new int[10][10]; for (i = 0; i 2020. 7. 10. 이전 1 ··· 11 12 13 14 15 16 17 ··· 19 다음