言語Cについて教えていただけませんか?
言語Cについて教えていただけませんか?
3分間英単語タイプ練習プログラムを作ります。
○単語は一様乱数を用いてランダムに呈示。
○各回の得点は「正答した単語の文字数の総和」とする。
○毎回「月/日/年-時:分:秒,得点」を結果ファイルscore.csvに追加的に書き込む(追記モード)。
#define _CRT_SECURE_NO_DEPRECATE 1
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define NMAX 25
void main(void)
{
FILE *fpr,*fpa;
int a,b;
char str1[10],str2[10];
long start,finish;
double ptime;
srand((unsigned)time(NULL));
start=clock();
fpr=fopen("word.txt","r");
if(fpr==NULL)
{
printf("file not found\n");
exit(1);
}
*
finish=clock();
ptime=(double)(finish-start)/CLOCKS_PER_SEC;
printf("処理時間=[%lf]秒",ptime);
_strdate(str1);
_strtime(str2);
printf("%s-%s,%.3lf\n",str1,str2,ptime);
fpa=fopen("score.csv","a");
fprintf(fpa,"%s-%s,%.3lf\n",str1,str2,ptime);
*のぶぶんがわからないです。word.txtは単語のファイルで単語数未知として読み込みました。教えていただけると幸いです。
お礼
ありがとうございました!!