#include <stdio.h>
#include<string.h>
#define ENTRIES5
int main(void)
{
int i, index;
char dic [ENTRIES][2][30] = {
{"book", "책"}
{"boy","소년"}
{"computer","컴퓨터"}
{"lanuguge","언어"}
{"rain","비"}
}
char word[30];
printf("단어를 입력 하시오 : ");
scanf("%s", word);
index = 0;
for(i=0; i<ENTRIES; i++)
{
if (strcmp(dic[index][0],word)==0)
{
printf("%s : %s \n", word, dic[index][1]);
return 0;
}
index ++;
{
printf("사전에서 발견되지 않습니다. \n");
return 0;
}
만들고있는데 영어사전을 쓸건지, 한글사전을 쓸건지 먼저 고른후에 단어찾는거로 바꾸라네요ㅠ 도움! 도움!