seunzu / hk-toss

[hk-toss] full-stack
0 stars 0 forks source link

0923 #6

Closed seunzu closed 1 month ago

seunzu commented 1 month ago

1 (개인)


        int[] cpCoffees = {100,200,300};
        int[] cpCoffees2 = new int[3];
//        cpCoffees2도 0 = 100, 1= 200, 2 = 300
//        둘이 같은지 비교 해보고 cpCoffees == cpCoffees2
//        둘이 값이 같으면 true 라고 나오게 해봅시다. 100,200,300
//         if for 익숙해져라 

2

//      문자열 String
//        String 변수명  = "ㄹㅇㄴㅁㄹㅇㅁㄴ";
//      char 문자s
//       array list
//        String x = "안녕하세여";
//        for (int i = 0; i < 1_000_000; i++){
//            System.out.print(x);
//        }
//        ---
//        String y = "";
//        for (int i = 0; i < 1_000_000; i++){
//            y += x;
//        }
//        System.out.print(y);
//        느리다

3 팀퀘스트


int[][] cp2 = {{1,2,3}, {4,5,6}, {7,8,9}};
// 1,2,3
// 4,5,6
// 7,8,9

3-1

image

3-2

image

3-3

image

3-3-2

image