C语言开发一个背单词软件
C语言开发一个背单词软件
日期:2017-10-08 20:07:53 人气:1
#include
#include
#include
struct word //定义一个word的结构体,里面的两个成员分别放英语单词和相应的汉语翻译
{
char chinese[20];
char english[20];
};
int point=0; //统计分数的
int count1=0;