我有这个小作业:
给定一个文本文件,创建一个函数,在文件中搜索用户提供的特定 ID。如果存在,请按如下方式打印整个配置文件:
ID_genre_name_age_height
在文本文件中只有一个配置文件:
19800372_male_David_19_1.75
因此,如果我输入相同的 ID,我的函数应该打印该信息。
我的代码,到目前为止不起作用如下:
#include <conio.h>
#include <fcntl.h>
#include <string.h>
#include <stdio.h>
#include <iostream.h>
int menu ();
main ()
{
int dato;
void create();
void Store();
void read();
void search();
clrscr();
do
{
dato=menu();
switch (dato)
{
case 1:
create();
break;
case 2:
store();
break;
case 3:
read();
break;
case 4:
search();
break;
case 5:
return -1;
default: cout<<"\n Error";
getch ();
break;
}
}
while (dato !=5);
getch();
return 0;
}
int menu ()
{
int op;
clrscr();
cout<<"\n File creator system";
cout<<"\n1 Create a file";
cout<<"\n2 Store Information";
cout<<"\n3 Read a file";
cout<<"\n4 Search Information";
cout<<"\n5 Exit...\n";
cout<<"\n";
cin>>op;
return op;
}
.
.
.
.
void search()
{
char ID[10],
char ID1[10];
char genre[10];
char name[20];
int age;
float height;
FILE *in;
in=fopen("c:\\exercise.txt","r");
clrscr();
printf("Enter ID: ");
fgets (ID1,10,stdin);
do{
fscanf(in,"%9s %s %s %d %4s",ID,genre,name,age,height);
if (strcmpi(ID,ID1)==0)
{
printf("ID:%9s\n",ID);
printf("Genre:%s\n",genre);
printf("Name:%s\n",name);
printf("Age:%d\n",age);
printf("Height:%4s\n",height);
}
}while(!feof(in));
fclose(in);
getch();
}
我不知道为什么它不起作用,我输入了 ID,它就在那里。