我是靠谱客的博主 唠叨绿茶,最近开发中收集的这篇文章主要介绍用C++输出.dat数据文件里的内容,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

       近日,下了<三心二意背单词>,发现这个软件超级简单,尝试着用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(&current_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数据文件里的内容所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部