• 大小: 8KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: C/C++
  • 标签:

资源简介

自己编写的一个学生信息管理系统,控制台程序,可以用文件读入信息

资源截图

代码片段和文件信息

#include
#include
#include
#include 
typedef struct Student
{
char name[10];
char number[20];
char dorm[20];
char QQ[20];
char telephone[20];
struct Student *next;
}Node;
Node *head=(Node *)malloc(sizeof(Node));
Node *end=(Node *)malloc(sizeof(Node));
int count=0;
void display(Node *p)
{
printf(“姓名:%s\n“p->name);
printf(“学号:%s\n“p->number);
printf(“宿舍号:%s\n“p->dorm);
printf(“QQ:%s\n“p->QQ);
printf(“电话:%s\n\n“p->telephone);
}
void error()
{
printf(“输入有误,请重新输入!“);
getch();
}
void menu()
{
printf(“********************************************************************************\n“);
    printf(“〓〓〓〓〓〓〓〓〓〓  ☆   学 生 信 息 管 理 系  统     ☆  〓〓〓〓〓〓〓〓〓〓\n“);
   printf(“〓〓〓〓〓〓〓★★★★★         ★★★★★★★         ★★★★★〓〓〓

评论

共有 条评论