- 김상윤
- 김희원
- 노건호
- 이정달
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 id="우리-민족의-형성과-선사-문화">우리 민족의 형성과 선사 문화</h1> | |
<h2 id="인류의-출현과-우리-민족의-형성">인류의 출현과 우리 민족의 형성</h2> | |
<p>현재 알려진 최초의 인류는 약 390만 년전 아프리카 동남부에서 출현한 <strong>오스트랄로피테쿠스 아파렌시스</strong>이다. 뇌용량이 크며 <s>대가리가 크다</s> 불과 언어 도구의 사용</p> | |
<ul> | |
<li>한반도와 중국 동북 지역에 인류가 살기 시작한것은 <strong>구석기</strong>시대 부터이다</li> | |
<li>우리 민족은 신석기 시대에 만주와 한반도를 터전으로 농사를 지으며 정착한 몽골 인종의 한 갈래에서 그 기원을 찾을 수 있다</li> | |
</ul> | |
<h2 id="구석기-시대의-모습">구석기 시대의 모습</h2> | |
<ul> | |
<li>구석기인들은 <strong>뗀석기</strong>를 사용하고, <em>열매 채집이나 사냥 물고기잡이</em> 등으로 식량을 구하였다.</li> |
현재 알려진 최초의 인류는 약 390만 년전 아프리카 동남부에서 출현한 오스트랄로피테쿠스 아파렌시스이다. 뇌용량이 크며 대가리가 크다 불과 언어 도구의 사용
- 한반도와 중국 동북 지역에 인류가 살기 시작한것은 구석기시대 부터이다
- 우리 민족은 신석기 시대에 만주와 한반도를 터전으로 농사를 지으며 정착한 몽골 인종의 한 갈래에서 그 기원을 찾을 수 있다
- 구석기인들은 뗀석기를 사용하고, 열매 채집이나 사냥 물고기잡이 등으로 식량을 구하였다.
- 정착된 생활이 아닌 이동 생활을 하며 동굴이나 바위에서 살았다, 또한 동굴에 벽화를 그리며 사냥의 성공과 풍요를 기원하였다
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <algorithm> | |
#include <string.h> | |
using namespace std; | |
int n; | |
long long sum=0; | |
struct _tuple{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <algorithm> | |
#include <string.h> | |
using namespace std; | |
int n; | |
long long sum=0; | |
struct _tuple{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define _CRT_SECURE_NO_WARNINGS // scanf 보안 경고로 인한 컴파일 에러 방지 | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdbool.h> | |
char dic[100]; // 결과값 배열 | |
int compare(const void *a, const void *b){ // 오름차순 비교 함수 구현 | |
int num1 = *(int *)a; // void 포인터를 int 포인터로 변환한 뒤 역참조하여 값을 가져옴 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define _CRT_SECURE_NO_WARNINGS // scanf 보안 경고로 인한 컴파일 에러 방지 | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdbool.h> | |
typedef struct dictionary{ | |
char dic[100]; // 결과값 배열 | |
int len = 0; // 문자열의 길이 | |
char s1[100]; // 크기가 100인 char형 배열을 선언 |