我正在制作一个简单的注册系统,用于维护一组计算机科学学生的数据库。每个学生记录包含
#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
不要忘记,你还必须strcpy(data[i].course_title, title);
这适用于所有字符串。
您当前正在执行此操作:data[i].course_title = title;
考虑使用 scanf。 这是一个通用函数,用于解析来自终端或具有fscanf
变体的文件的输入。它已经是您要包含的库的一部分,并且在格式上类似于您将使用大量程序输出的printf
。
你错误地声明了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
。 这是不对的。
- 在结构后添加分号。
- 始终为每个函数提供显式类型。 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 编译器的有关此错误的警告。 如果你不是,你要么需要打开警告,要么你需要一个更好的编译器。
这可能与您面临的其他问题直接相关,也可能不直接相关,但应该得到解决。