概述
近日,下了<三心二意背单词>,发现这个软件超级简单,尝试着用C++把它的单词数据调出来,还设置了单词输出的间隔时间!
#include<iostream>
#include<stdio.h>
#include<process.h>
#include<string>
using namespace std;
void Dtime(int dt) {
time_t current_time;
time_t start_time;
// 得到开始时间
time(&start_time);
do
{
time(¤t_time);
}
while ((current_time - start_time) < dt);
}
main(){
FILE *fp;
char p[100];
int t;
cout<<"输入单词显示间隔时间(seconds):";
cin>>t;
if ((fp=fopen("cet4_word.dat","r"))==NULL)
{
cout<<"/nCould not open the file."<<endl;
cout<<"Exiting program."<<endl;
exit(1);
}
while (fgets(p,100,fp)!=NULL)
{
cout<<p;
Dtime(t);
}
}
最后
以上就是唠叨绿茶为你收集整理的用C++输出.dat数据文件里的内容的全部内容,希望文章能够帮你解决用C++输出.dat数据文件里的内容所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复