C语言: 大学课程设计---学生信息管理系统

一定要两个.c文件同时编译,这样链接出来的可执行文件才可以运行,运行操作代码中已经写了;

代码

main.c

#include"stu.h"


int main(int argc, const char *argv[])
{
class_t my_class;
memset(&my_class,0,sizeof(my_class));

while(1){
int chose;
a_pun();
scanf("%d",&chose);
switch(chose){

case 1: 
	class_tian(&my_class);
	break;
case 2:
	class_delte(&my_class);
	break;
case 3: 
		class_xiugai(&my_class);
		break;
case 4: 
	  class_chaxun(&my_class);
	  break;
case 5: class_sort(&my_class);
		break;
case 6:
	class_dayin(&my_class);
		break;
}
if(chose == 7){
break;
}

}
printf("欢迎下次使用\n");
	
	return 0;
}

student.h

#define N 40
#include<string.h>
#include<stdio.h>
typedef struct stu{
	int id;
	char name[N];
	int score;
}stu_t;

typedef struct class{

	stu_t s[N];

	int count;
}class_t;

void a_pun( );

//添加学生信息
void cla
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值