-1

我正在制作一个简单的注册系统,该系统维护一个包含计算机科学专业学生的数据库。每个学生记录包含

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

struct student
{

   char name[300];   
   int age;
   char course_1[40];
   char course_2[40];
   char *remarks;

};

struct course

{

   char course_title[200];
   int  cse_num[100];
   char instructor[200];
   char date[50];
   char start_time[50];
   char end_time[50];
   char location[50];

};


main()

{

  int i;
  struct course data[11];
  FILE *f;
  char title[100];
  int num[100];
  char instructor[100];
  char date[100];
  char start_time[100];
  char end_time[100];
  char location[100];
  char line[300];

  f = fopen("course.dat", "r");


  i=0;


  while(*fgets(line, 300, f) != '\n')

  {
      sscanf(line, "%99[^\n]", num);
      sscanf(line, "%99[^\n]", title);
      sscanf(line, "%99[^\n]", instructor);
      sscanf(line, "%99[^\n]", date);
      sscanf(line, "%99[^\n]", start_time);
      sscanf(line, "%99[^\n]", end_time);
      sscanf(line, "%99[^\n]", location);

      data[i].cse_num = num // doesn't work

      strcpy(data[i].course_title, title);
      strcpy(data[i].instructor, instructor);
      strcpy(data[i].date, date);
      strcpy(data[i].start_time, start_time);
      strcpy(data[i].end_time, end_time);
      strcpy(data[i].location, location);


      i++;


  }

  fclose(f);


}

我的问题是如何从文件中获取输入,因为它是 7 行,直到考虑新行。我尽力解释了这一点,如果你能帮助我,谢谢!老实说,我真的很专注于这一点,只是无法弄清楚。这是文件:

示例输入:

CSE1001
Research Directions in Computing
Wildes, Richard
W
16:30
17:30
VC 135
4

3 回答 3

1

别忘了,你也必须strcpy(data[i].course_title, title);

这适用于所有字符串。

您目前正在这样做:data[i].course_title = title;

于 2013-03-25T19:29:20.040 回答
0

考虑使用scanf。这是一个通用函数,用于解析来自终端或带有fscanf变体的文件的输入。它已经是您将要包含的库的一部分,并且在格式上printf与您将使用很多程序输出的格式相似。

于 2013-03-25T19:25:25.493 回答
0

你误报了main()

struct course
{
    char course_title[200];
    int  cse_num[100];
    char instructor[200];
    char date[50];
    char start_time[50];
    char end_time[50];
    char location[50];
}

main()
{

这表示main()返回一个struct course. 那是错误的。

  1. 在结构后添加分号。
  2. 始终为每个函数提供显式类型。C99 需要它;这是 C89 的好习惯。

代码应该开始:

struct course
{
    char course_title[200];
    int  cse_num[100];
    char instructor[200];
    char date[50];
    char start_time[50];
    char end_time[50];
    char location[50];
};

int main(void)
{

您应该从 C 编译器收到有关此错误的警告。如果不是,您要么需要打开警告,要么需要获得更好的编译器。

这可能与您面临的其他问题直接相关,也可能不直接相关,但应该解决。

于 2013-03-25T19:27:34.723 回答