기록은 기억을 지배한다.

일요일 :
1주일 계획 수립


품사(品詞) 한글

品 : 물건 품
詞 : 말씀 사

단어를 기능, 형태, 의미에 따라 나눈 갈래


Insertion sort 컴퓨터

  def isort(a:Array[Int]): Unit = {
    for(i <- 1 until a.length) {
      var value = a(i);
      var j = i-1;
      while(j >= 0 && a(j) > value) {
        a(j+1) = a(j)
        j -= 1
      }
      a(j + 1) = value
    }
  }

//머리가 바보가 되어가나...


Bubble sort 컴퓨터


object Main {
  def bsort(a: Array[Int]): Unit = {
    var flag = false;
    do {
      flag = false;
      for(i <- 0 until a.length - 1) {
        if(a(i) > a(i+1)) {
          val tmp = a(i);
          a(i) = a(i+1);
          a(i+1) = tmp;
          flag = true;
        }
      }
    } while(flag);
  }
  def main(args: Array[String]): Unit = {
    val a = new Array[Int](10);
    val r = new Random();
    for(i <- 0 until a.length) {
      a(i) = Math.abs(r.nextInt())%255
    }
    bsort(a);
    println(a.toString);
  }
}


The는 언제 붙을까? 영어

1.( 대륙, 나라, 주, 섬, 도시등의)장소 이름 앞에는 the를 쓰지 않는다.

Bangkok is the capital of Thailand.
Easter Islands is in the Pacific.
Peru is in South America.
Quebec is a province of Canada.


2. 장소 이름이 republic/ states/ kingdom 를 동반한다면 the를 사용한다.

the Dominican Replublic
the United States of America
the Czech Republic
the United Kingdom


3. 나라, 섬, 산들의 복수형태의 이름앞에는 the를 사용한다.

the Netherlands
the Canary Islands
the Philippines
the Andes

4. 대양, 바다, 강, 운하의 이름 앞에 the를 사용한다.
the Paficic
the Amazon
the Mediterranean
the Panama Canal


5. 마을 안에 있는 길, 빌딩과 같은 장소 이름애 the를 쓰지 않는다.

Kevin lives on Central Avenue.
Times Square is in New York.
Where is Main Street, please?
6. 공항, 역, 대학, 공원 이름에는 the를 사용하지 않는다.
Kennedy Airport
McGill University
Pennsylvania Station
Yosemite (National Park)


7. 일반적으로 호텔, 음식점, 극장, 박물관, 기념비에는 the를 사용한다.
the Milton ( Hotel )
the New Broadway ( Theater )
the Millhouse ( Restaurant )
the Metropolitan ( Museum )
the Springfield Cineplex ( movie theater )
the Lincoln Memorial

8. of와 같이 사용하는 이름에는 the를 사용한다.
the University of California
the Greate Wall of China
the bank of Nova Scotia
the Tower of london

Basic Grammer In use 공부중에...

성명 聲明 한글

성명 (소리 성, 밝을 명)

어떤 일에 대한 자기의 입장이나 견해 또는 방침 따위를 공개적으로 발표함. 또는 그 입장이나 견해

잊지 말자 ㅎㅎ

1 2 3 4 5 6 7 8