#define _ _ACCOUNT_H_ _
时间: 2023-09-16 10:07:16 浏览: 95
这是一个预处理指令,用于防止头文件被重复包含。一般情况下,当一个头文件被多个源文件包含时,该头文件的内容会在每个源文件中重复定义,导致编译错误。使用预处理指令可以解决这个问题。在头文件的开头加上 #ifndef _ACCOUNT_H_ 和 #define _ACCOUNT_H_ 后,如果该头文件已经被包含过了,就不会再次包含了。在头文件的结尾加上 #endif 也是为了保险起见,防止出现意外情况。
相关问题
#include "stdio.h" #include "string.h" #include "math.h" #define N0 100 struct node { int rank, ac; char name[10], account[30]; double score; }stu[N0]; struct node1 { char name[10], account[30]; bool atend; }acc[N0]; int n, num; void readData() { char s[150]; n=0; while( gets(s)!=NULL ) { if( strstr( strupr(s), "姓名")!=NULL )break; if( strstr( strupr(s), "FJAU")==NULL ) continue; n++; sscanf(s, "%*d%s%d", stu[n].account, &stu[n].ac); } num=0; while( gets(s)!=NULL ) { if( strstr( strupr(s), "FJAU")==NULL ) continue; num++; sscanf(s, "%s%s", acc[num].name, acc[num].account); } } void cal() {//************************************************ //================================================= } void printData() { int i; for( i=1; i<=n; i++) if( stu[i].name[0]!=0 ) printf("%s %.3f\n", stu[i].name, stu[i].score); } int main() { freopen("score.in", "r", stdin); freopen("score.out", "w", stdout); readData(); cal(); printData(); return 0; }
这是一段 C 语言代码,代码的主要功能是读取一些数据,计算学生成绩,并输出结果。具体来说,代码中定义了两个结构体 node 和 node1,分别表示学生和账号信息。代码通过调用 readData 函数来读取数据,其中主要是读取学生的账号和考试成绩,以及账号和姓名信息。接着调用 cal 函数来计算学生成绩,并将结果保存在 node 结构体中。最后,调用 printData 函数来输出每位学生的姓名和成绩。该代码还包括了一些头文件的引用以及一些宏定义。
#include <stdio.h> #include <string.h> #include <stdlib.h> #define max 1000 int num=0; struct book //书 { char name[20]; //名 double price; //价格 int lent=0; //是否已借 int id=NULL; //图书编号 struct book *next; }; struct user //用户结构 { char name[30]; //名字 int account ; //账号 int password; //密码 int borrow; //借书的id }; int lookupb(book *l,char name[20]) //书名查找,(有)返回id值(无)返回 NULL { int i=0; book *p=l->next ; for(i=0;i<num;i++) { if(strcmp(p->name ,name )==0) { return l->id ; break; } p=p->next ; } return NULL; } void out(book *l) //输出图书 { int i; book *p=l->next ; printf("name price"); for(i=1;i<=num;i++) { puts(p->name ); printf("%lf\n",p->price ); if(i%12==0) { printf("%d/%d",i,num/12); //i/总页数 } p=p->next ; } } void add() //管理员 注册新图书 { book *l,*s,*r; int i,n,k; if(num==0) { l=(book *)malloc(sizeof(book)); l->next =NULL; } r=l; printf("需要添加几本\n"); scanf("%d",&n); getchar(); //消化回车键 for(i=0;i<n;i++) { s=(book *)malloc(sizeof(book)); printf("请输入书名\n"); gets(s->name ); k=lookupb(l,s->name); if(k!=NULL) { printf("重复命名,请重新输入\n"); add(); } printf("%c",s->name ); printf("请输入价格\n"); scanf("%lf",&s->price ); getchar(); //消化回车键 strcpy(l->name,s->name); s->id =1; r->next =s; r=s; num++; printf("添加成功!"); system("pause"); } r->next=NULL; out(l); } int main() { add(); printf("%d\n",sizeof(book)); }
这段代码缺少了一些定义,例如 `book` 结构体的定义、`lookupb` 函数和 `out` 函数的参数类型,以及 `book` 结构体中的一些成员变量没有正确初始化(例如 `lent` 和 `id`)。此外,代码中存在一些语法错误和逻辑错误。
下面是经过修改后的代码:
```c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define max 1000
struct book {
char name[20]; // 名称
double price; // 价格
int lent; // 是否已借出
int id; // 图书编号
struct book *next;
};
struct user {
char name[30]; // 名字
int account; // 账号
int password; // 密码
int borrow; // 借书的id
};
int lookupb(struct book *l, char name[20]) {
int i = 0;
struct book *p = l->next;
for (i = 0; i < max; i++) {
if (strcmp(p->name, name) == 0) {
return p->id;
}
p = p->next;
}
return -1;
}
void out(struct book *l) {
int i;
struct book *p = l->next;
printf("name\tprice\n");
for (i = 1; i <= max; i++) {
printf("%s\t%.2f\n", p->name, p->price);
if (i % 12 == 0) {
printf("%d/%d\n", i, max / 12); // i/总页数
}
p = p->next;
}
}
void add() {
struct book *l, *s, *r;
int i, n, k;
if (max == 0) {
l = (struct book *)malloc(sizeof(struct book));
l->next = NULL;
}
r = l;
printf("需要添加几本:\n");
scanf("%d", &n);
getchar(); // 消化回车键
for (i = 0; i < n; i++) {
s = (struct book *)malloc(sizeof(struct book));
printf("请输入书名:\n");
gets(s->name);
k = lookupb(l, s->name);
if (k != -1) {
printf("重复命名,请重新输入\n");
add();
}
printf("请输入价格:\n");
scanf("%lf", &s->price);
getchar(); // 消化回车键
s->lent = 0;
s->id = i + 1;
r->next = s;
r = s;
printf("添加成功!\n");
}
r->next = NULL;
out(l);
}
int main() {
add();
return 0;
}
```
这段代码实现的功能是,管理员可以注册新书,输入书名和价格,系统自动分配编号,并将书名、价格、编号等信息存储在一个链表中。最后,输出所有已注册的图书信息。注意,这段代码并没有实现完整的图书馆管理系统,只是实现了其中的一个功能。如果需要实现完整的图书馆管理系统,还需要考虑很多其他方面的功能和细节。
阅读全文