C

문자열 Lab

kchabin 2022. 5. 17. 14:48

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#define WORDS 5



int main() {
int index;
char dic[WORDS][2][30] = { //WORDS=단어의 갯수, 인덱스 0에 영어, 인덱스 1에 한글단어 저장.
{"book", "책"},
{"boy", "소년"},
{"computer", "컴퓨터"},
{"language", "언어"},
{"rain", "비"},
};
char word[30];
printf("단어를 입력하시오:");
scanf("%s", &word);

for (index = 0; index < WORDS; index++)
{
if (strcmp(word, dic[index][0]) == 0)
{
printf(" %s : %s\n", word, dic[index][1]);
return 0;
}
}
printf("사전에서 발견되지 않았습니다.\n");
return 0;
 
}

'C' 카테고리의 다른 글

시험공부  (0) 2022.06.07
파일  (0) 2022.05.31
프로그래머스 Lv.1 나머지가 1인 수 찾기.  (0) 2022.05.10
C 포인터 Lab  (0) 2022.05.10
C언어 콘서트 8장 Programming #5, 6 p.341  (0) 2022.05.09