• 大小: 963KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-07
  • 语言: 其他
  • 标签: 单词录入  字典  

资源简介

设计一个程序,该程序输入一个英语单词和它的释义(应考虑一个单词可以有多个释义)。将单词和它的释义分别存放在文件word.dat和meaning.dat中。文件word.dat中存储的数据的结构为:       class index       { public:        char word[20];        streampos offset;       }; 其中,数据成员offset用于记录单词word的释义在文件meaning.dat中的位置。用户输入一个单词,屏幕输出该单词的释义。

资源截图

代码片段和文件信息

#include “siqi.h“
void main(){
ifstream ifs;
string temp;
ifs.open(“word.dat“);
while(!ifs.eof()&&ifs){
ifs>>temp;
ifs>>count;
}
ifs.close();
count++;
while(1){
int m;
char pd;
cout<<“请输入需求:1.录入单词  2.查询单词“< cin>>m;
switch(m){
case 1: write();break;
case 2: find();break;
default:cout<<“输入错误“< }
cout<<“是否继续(Y/N)?“< cin>>pd;
if(pd==‘n‘|| pd==‘N‘) break;
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     573561  2014-07-02 08:37  程序\Debug\siqi.exe

     文件     823900  2014-07-02 08:37  程序\Debug\siqi.ilk

     文件     375786  2014-07-02 02:32  程序\Debug\siqi.obj

     文件    2286164  2014-07-02 02:32  程序\Debug\siqi.pch

     文件    1172480  2014-07-02 08:37  程序\Debug\siqi.pdb

     文件      82944  2014-07-02 09:57  程序\Debug\vc60.idb

     文件     118784  2014-07-02 02:32  程序\Debug\vc60.pdb

     文件         64  2014-07-02 09:59  程序\meaning.dat

     文件        465  2014-06-23 22:53  程序\siqi.cpp

     文件       3377  2014-07-02 08:37  程序\siqi.dsp

     文件        516  2014-07-02 08:38  程序\siqi.dsw

     文件       1471  2014-06-23 22:54  程序\siqi.h

     文件      50176  2014-07-02 10:00  程序\siqi.ncb

     文件      48640  2014-07-02 10:00  程序\siqi.opt

     文件        744  2014-07-02 08:37  程序\siqi.plg

     文件         37  2014-07-02 09:59  程序\word.dat

     目录          0  2015-02-06 18:20  程序\Debug

     目录          0  2015-02-06 18:20  程序

----------- ---------  ---------- -----  ----

              5539109                    18


评论

共有 条评论