当前位置:   article > 正文

C语言课设实现学生信息管理系统_c语言学生管理系统课程设计说明

c语言学生管理系统课程设计说明

C语言课设实现学生信息管理系统

运行截图

菜单

源码主要功能

主要功能模块

    1. 主界面:用菜单Manu函数展示系统的主要功能选项,如显示学生信息、增加学生、删除学生、修改学生信息、查询学生、成绩排序、计算各科平均分、保存学生信息、统计全部科目及格人数、输出总分第一的学生信息等。
    1. 显示学生信息
    1. 增加学生
    1. 删除学生
    1. 修改学生信息
    1. 查询学生
    1. 按各科成绩排序
    1. 计算各科平均分
    1. 保存学生信息
    1. 统计全部科目及格人数
    1. 输出总分第一的学生信息
    1. 退出系统

设计思路

一、需求分析
首先,需要明确系统的用户需求。学生信息管理系统的用户需要查看学生的个人信息、成绩,管理学生的信息,包括录入、修改、查询和统计等;
二、功能设计
根据需求分析,系统需要设计以下主要功能:

  1. 学生信息管理:包括学生基本信息的录入、修改、查询和删除等功能。这些信息应包括姓名、学号、性别、年龄、联系方式等。
  2. 成绩管理:提供成绩的录入、查询、修改和统计分析功能。可以按照学生等条件进行查询和统计。
    三、数据库设计
    数据库设计是核心,需要建立合理的数据结构。
    用c语言设计两个指针结构体来代替数据库,实现顺序表储存数据并保存至txt文件。

运行环境

由C语言编写,只用了简单的标准库,无需下载其他库文件只要有GCC和MinGW环境即可编译运行,具备通用性,可在Linux和Windows系统上正常运行

数据格式

pF2aidO.md.png

结构体设计

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

#define MAX_NUM 100
//学生最大容纳量

typedef struct
{
    char no[30];
    char name[10];
    char sex[10];
	char phone[20];
	float cyuyan;
	float computer;
	float datastruct;
}*student,student1;

typedef struct
{
	student stu[MAX_NUM];
	int number;
}*studentDB;

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

这段代码定义了两个结构体类型,并使用指针声明了一个名为studentDB的类型。

第一个结构体类型为student,包含以下成员变量:

char类型的no[30]:表示学生的学号,长度为30个字符。
char类型的name[10]:表示学生的名字,长度为10个字符。
char类型的sex[10]:表示学生的性别,长度为10个字符。
char类型的phone[20]:表示学生的电话号码,长度为20个字符。
float类型的cyuyan:表示学生的语文成绩。
float类型的computer:表示学生的计算机成绩。
float类型的datastruct:表示学生的数据结构成绩。
第二个结构体类型为studentDB,包含以下成员变量:

student类型的stu[MAX_NUM]:表示一个包含最多MAX_NUM个学生的数组。
int类型的number:表示学生的数量。
通过typedef关键字,将结构体类型student和studentDB分别命名为student和studentDB。这样,在后续的代码中可以使用这两个类型名来声明相应的变量或函数参数。

主要定义了两个结构体和一个宏常量。

第一个结构体是student,表示一个学生的信息。包含以下字段:

no[30]:学号,长度为30的字符数组;
name[10]:姓名,长度为10的字符数组;
sex[10]:性别,长度为10的字符数组;
phone[20]:电话号码,长度为20的字符数组;
cyuyan:语文成绩,浮点数;
computer:计算机成绩,浮点数;
datastruct:数据结构成绩,浮点数。
第二个结构体是studentDB,表示一个学生数据库。包含以下字段:

stu[MAX_NUM]:一个student类型的指针数组,用于存储最多MAX_NUM个学生的信息;
number:一个整型变量,表示当前数据库中存储的学生数量。

全部源码

/*
* 本程序来自 上玄 开源 
* 个人空间 https://gitee.com/skyvippower
*/


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

#define MAX_NUM 100
//学生最大容纳量

typedef struct
{
    char no[30];
    char name[10];
    char sex[10];
	char phone[20];
	float cyuyan;
	float computer;
	float datastruct;
}*student,student1;

typedef struct
{
	student stu[MAX_NUM];
	int number;
}*studentDB;


void read(studentDB temp)
{
	FILE *infile;
    infile = fopen("./数据.txt","r");
	if (!infile)
	{
		printf("文件打开失败!");
		exit(0);
	}
	while (!feof(infile))
	{
        temp->stu[temp->number] = malloc(sizeof(student1));
        fscanf(infile,"%s %s %s %s %f %f %f",temp->stu[temp->number]->no,temp->stu[temp->number]->name,temp->stu[temp->number]->sex,temp->stu[temp->number]->phone,&(temp->stu[temp->number]->cyuyan),&(temp->stu[temp->number]->computer),&(temp->stu[temp->number]->datastruct));
        temp->number++;
	}
	fclose(infile);
    //printf("%d",temp->number);
}

void write(studentDB temp)
{
    FILE *outfile;
    outfile = fopen("./数据.txt", "w");
    if (!outfile)
    {
        printf("文件打开失败!");
        exit(1); //非零值表示错误
    }
    if (temp && temp->number > 0) // 检查指针是否有效
    {
        for (int i = 0; i < temp->number; i++)
        {
	        if(i == temp->number-1) {//判断是否为最后一排
				fprintf(outfile,"%s %s %s %s %.2f %.2f %.2f",temp->stu[i]->no,temp->stu[i]->name,temp->stu[i]->sex,temp->stu[i]->phone,temp->stu[i]->cyuyan,temp->stu[i]->computer,temp->stu[i]->datastruct);
			}
			else{
				fprintf(outfile,"%s %s %s %s %.2f %.2f %.2f\n",temp->stu[i]->no,temp->stu[i]->name,temp->stu[i]->sex,temp->stu[i]->phone,temp->stu[i]->cyuyan,temp->stu[i]->computer,temp->stu[i]->datastruct);
			}
		}
    }
    fclose(outfile);
    printf("保存成功");
	read(temp);
}

void display(studentDB temp)
{
    printf("|   学号   |姓名|性别|  手机号  |c语言|计算机系统|数据结构|\n");
    for (int i = 0; i < temp->number; i++)
	{
        printf("%s %s %s %s %.2f %.2f %.2f\n",temp->stu[i]->no,temp->stu[i]->name,temp->stu[i]->sex, temp->stu[i]->phone,temp->stu[i]->cyuyan,temp->stu[i]->computer,temp->stu[i]->datastruct);
	}
	
}

void menu()
{
	//printf("本程序来自 上玄 开源 个人空间 https://gitee.com/skyvippower");
	printf("\n\n\t****************************简单学生信息管理系统*****************************\n");
	printf("\t*                              1.显示学生信息                             *|\n");
	printf("\t*                              2.增加学生信息                             *|\n");
	printf("\t*                              3.删除学生信息                             *|\n");
	printf("\t*                              4.修改学生信息                             *|\n");
	printf("\t*                              5.查询学生信息                             *|\n");
    printf("\t*                              6.排序学生成绩                             *|\n");
    printf("\t*                              7.计算学生平均成绩                         *|\n");
    printf("\t*                              8.保存学生信息                             *|\n");
    printf("\t*                              9.统计全部课程及格人数                     *|\n");
    printf("\t*                              10.输出总成绩最高的学生信息                *|\n");
	printf("\t*                              0.退出系统                                 *|\n");
	printf("\t***************************************************************************\n");
	printf("请选择你的操作并将序号输入:");
}

int countDigits(long long n) {
	//计算位数的函数
    int count = 0;
    while (n > 0) {
        n /= 10; // 移除最右边的数字
        count++; // 位数增加
    }
    return count;
}

void insert(studentDB temp) //添加学生
{
    char no[30];
    printf("请输入要添加学生的学号:");
    scanf("%s",no);
    int n;
    long long num;
    sscanf(no,"%lld",&num);//将字符串转化为长整形
    n = countDigits(num);
    if (n != 11)
	{
        printf("输入的学号位数有误,请重新输入!");
        return;
	}
	else
	{
        student1 stu;
        FILE *outfile;
        outfile = fopen("./数据.txt","a");
        if (!outfile)
        {
            printf("文件打开失败!");
            exit(0);
        }
        strcpy(stu.no,no);
        printf("请输入姓名:");
        scanf("%s",stu.name);
        printf("请输入性别:");
        scanf("%s",stu.sex);
        printf("请输入手机号:");
        scanf("%s",stu.phone);
        printf("请输入c语言成绩(带小数点):");
        scanf("%f",&stu.cyuyan);
        printf("请输入计算机系统成绩(带小数点):");
        scanf("%f",&stu.computer);
        printf("请输入数据结构成绩(带小数点):");
        scanf("%f",&stu.datastruct);
        n = fprintf(outfile,"\n%s %s %s %s %f %f %f",stu.no,stu.name,stu.sex,stu.phone,stu.cyuyan,stu.computer,stu.datastruct);
        printf("%s %s %s %s %.2f %.2f %.2f",stu.no,stu.name,stu.sex,stu.phone,stu.cyuyan,stu.computer,stu.datastruct);
        printf("学生信息已成功插入!信息长度:%d\n",n);
        fclose(outfile); // 关闭文件
		read(temp);
        return;
    }
}

void delete(studentDB temp)
{
	printf("请输入要删除的学生信息学号:");
	char no[15];
    scanf("%s",no);
    printf("%s",no);
    for (int i = 0; i < temp->number ; i++)
	{
        //printf("%s",temp->stu[i]->no);
        if (strcmp(temp->stu[i]->no,no) == 0)
		{
            for (int k = i; k < temp->number; k++)
			{
				temp->stu[k] = temp->stu[k + 1];
			}
			free(temp->stu[temp->number]);
			temp->number--;
			printf("学生信息已成功删除!\n");
			return;
		}
	}
    printf("学生学号输入错误!");
    return;
}

void modify(studentDB temp)
{
	printf("请输入要修改的学生信息学号:");
	char no[15];
    scanf("%s", no);
    long num;
    sscanf(no,"%ld",&num);
	int flag=0;
    for (int i = 0; i < temp->number ; i++)
	{
        if (strcmp(no,temp->stu[i]->no)==0)
		{
            printf("\n学号:%s  姓名:%s  性别:%s  手机号:%s  c语言:%.2f  计算机系统:%.2f  数据结构:%.2f\n\n\n", temp->stu[i]->no, temp->stu[i]->name, temp->stu[i]->sex, temp->stu[i]->phone, temp->stu[i]->cyuyan, temp->stu[i]->computer, temp->stu[i]->datastruct);
            printf("|1.学号|2.姓名|3.性别|4.手机号|5.c语言成绩|6.计算机系统成绩|7.数据结构成绩|8.不改动并返回菜单|9.依次修改全部数据\n\n\n请输入要改动的数据项:");
			scanf("%d",&flag);
			//switch判断
			switch(flag)
			{
				case 1:
					printf("请输入要修改的学号:");
					scanf("%s",temp->stu[i]->no);
					break;
				case 2:
					printf("请输入姓名:");
					scanf("%s",temp->stu[i]->name);
					break;
				case 3:
					printf("请输入性别:");
					scanf("%s",temp->stu[i]->sex);
					break;
				case 4:
					printf("请输入手机号:");
					scanf("%s",temp->stu[i]->phone);
					break;
				case 5:					
					printf("请输入c语言成绩(带小数点):");
					scanf("%f",&(temp->stu[i]->cyuyan));	
					break;
				case 6:
					printf("请输入计算机系统成绩(带小数点):");
					scanf("%f",&(temp->stu[i]->computer));
					break;
				case 7:
					printf("请输入数据结构成绩(带小数点):");
					scanf("%f",&(temp->stu[i]->datastruct));
					break;
				case 8:
					return;
				case 9:
					printf("请输入姓名:");
					scanf("%s",temp->stu[i]->name);
					printf("请输入性别:");
					scanf("%s",temp->stu[i]->sex);
					printf("请输入手机号:");
					scanf("%s",temp->stu[i]->phone);
					printf("请输入c语言成绩(带小数点):");
					scanf("%f",&(temp->stu[i]->cyuyan));
					printf("请输入计算机系统成绩(带小数点):");
					scanf("%f",&(temp->stu[i]->computer));
					printf("请输入数据结构成绩(带小数点):");
					scanf("%f",&(temp->stu[i]->datastruct));
					printf("学生信息已成功修改!\n");
					break;
				default:
					printf("请输入1-9的数字\n");
					return;
			}
			flag=1;
			return;
		}
	}
    if (flag == 0)
    {
        printf("学生学号输入错误!");
        return;
    }
	
}

void search(studentDB temp)
{
	printf("请输入要查询学生信息的方式,1为姓名查找,2为学号查找\n请选择:");
	int n;
	scanf("%d",&n);
	if (n==2)
	{
		printf("请输入要查询的学生学号:");
		char no[15];
		scanf("%s",no);
		for (int i = 0; i < temp->number; i++)
		{
			if (strcmp(temp->stu[i]->no,no) == 0)
			{
                printf("学号:%s  姓名:%s  性别:%s  手机号:%s  c语言:%.2f  计算机系统:%.2f  数据结构:%.2f\n", temp->stu[i]->no, temp->stu[i]->name, temp->stu[i]->sex, temp->stu[i]->phone, temp->stu[i]->cyuyan, temp->stu[i]->computer, temp->stu[i]->datastruct);
				return;
			}
		}
		printf("系统中未找到该学生信息!\n");
	}
	else if (n==1)
	{
		printf("请输入要查询的学生姓名:");
		char name[5];
		scanf("%s",name);
        //printf("%d",temp->number);
		for (int i = 0; i < temp->number; i++)
		{
			//比较name变量和temp->stu[i]->name
            //printf("%s",name);
            if (strcmp(temp->stu[i]->name,name) == 0)
			{
                printf("%s",temp->stu[i]->name);
                printf("学号:%s  姓名:%s  性别:%s  手机号:%s  c语言:%.2f  计算机系统:%.2f  数据结构:%.2f\n",temp->stu[i]->no, temp->stu[i]->name, temp->stu[i]->sex, temp->stu[i]->phone, temp->stu[i]->cyuyan, temp->stu[i]->computer, temp->stu[i]->datastruct);
				return;
			}
		}
		printf("系统中未找到该学生信息!\n");
        return;
	}
	else if (n==0)
	{
		return;
	}
	
	else
	{
		printf("请输入数字1或者2选择查询方式或者输入0返回菜单!");
        return;
	}
	
}

// 比较c语言成绩函,用于qsort  
int compare_cyuyan(const void *a, const void *b) {  
    student stuA = *(student *)a; 
    student stuB = *(student *)b; 
    return stuB->cyuyan - stuA->cyuyan; 
}
// 比较计算机函数,用于qsort  
int compare_computer(const void *a, const void *b) {  
    student stuA = *(student *)a; 
    student stuB = *(student *)b; 
    return stuB->computer - stuA->computer; 
}
//比较数据结构
int compare_datastruct(const void *a, const void *b) {  
    student stuA = *(student *)a;  
    student stuB = *(student *)b;  
    return stuB->datastruct - stuA->datastruct;  
}
// 三种方法排序学生
void sort_students_by_cyuyan(studentDB db) {  
    qsort(db->stu, db->number, sizeof(student), compare_cyuyan);  
}

void sort_students_by_computer(studentDB db) {  
    qsort(db->stu, db->number, sizeof(student), compare_computer);  
}

void sort_students_by_datastruct(studentDB db) {  
    qsort(db->stu, db->number, sizeof(student), compare_datastruct);  
}

void sort(studentDB temp)
{
	int n = 0;
	printf("|1.c语言成绩降序排列|2.计算机成绩降序排列|3.数据结构成绩降序排列|\n请选择排序方式:");
	scanf("%d",&n);
	switch (n)
	{
	case 1:
		sort_students_by_cyuyan(temp);// 对学生信息按c语言分数进行排序
		break;
	case 2:
		sort_students_by_computer(temp);
		break;
	case 3:
		sort_students_by_datastruct(temp);
		break;
	default:
		return;
	}

    // 输出排序后的学生信息
    for (int i = 0; i < temp->number; i++)
    {
        printf("%d. 学号:%s,姓名:%s,性别:%s,电话:%s,计算机成绩:%.2f,数据结构成绩:%.2f,c语言成绩:%.2f\n",i+1,temp->stu[i]->no, temp->stu[i]->name, temp->stu[i]->sex, temp->stu[i]->phone, temp->stu[i]->computer, temp->stu[i]->datastruct, temp->stu[i]->cyuyan);
    }
    return;
}

void avg(studentDB temp)
{
	float ctotal = 0.0;
	float computertotal = 0.0;
	float datastruttotal = 0.0;
	for (int i = 0; i < temp->number; i++)
	{
		ctotal += temp->stu[i]->cyuyan;
		computertotal += temp->stu[i]->computer;
		datastruttotal += temp->stu[i]->datastruct;
	}
	printf("c语言平均成绩:%.2f  计算机系统平均成绩:%.2f  数据结构平均成绩:%.2f",ctotal/temp->number,computertotal/temp->number,datastruttotal/temp->number);
	return;
}

void count(studentDB temp)
{
	int count = 0;
	printf("全部及格的同学如下:");
	for (int i = 0; i < temp->number; i++)
	{
		if (temp->stu[i]->cyuyan >= 60.0 && temp->stu[i]->computer >= 60.0 && temp->stu[i]->datastruct >= 60.0)
		{
			count++;
			printf("%s\t",temp->stu[i]->name);
		}
	}
	printf("\n全部课程及格人数:%d",count);
}

// 所有学生总分第一
void printTopStudent(studentDB temp) {  
    if (temp->number == 0) {  
        printf("数据库没有学生信息。\n");  
        return;  
    }  
  
    int topIndex = 0;
    float topScore = temp->stu[topIndex]->cyuyan + temp->stu[topIndex]->computer + temp->stu[topIndex]->datastruct;  
  
    // 遍历所有学生,找到总分最高的
    for (int i = 1; i < temp->number; i++) {  
        float currentScore = temp->stu[i]->cyuyan + temp->stu[i]->computer + temp->stu[i]->datastruct;  
        if (currentScore > topScore) {  
            topIndex = i;//如果总分更高就赋值给下标变量topIndex
            topScore = currentScore;  
        }  
    }  
    printf("总分最高的学生是:\n");  
    printf("学号:%s\n", temp->stu[topIndex]->no);  
    printf("姓名:%s\n", temp->stu[topIndex]->name);  
    printf("性别:%s\n", temp->stu[topIndex]->sex);  
    printf("电话:%s\n", temp->stu[topIndex]->phone);  
    printf("c语言成绩:%.2f\n", temp->stu[topIndex]->cyuyan);  
    printf("计算机成绩:%.2f\n", temp->stu[topIndex]->computer);  
    printf("数据结构成绩:%.2f\n", temp->stu[topIndex]->datastruct);  
    printf("总分:%.2f\n", topScore);  
}

int main()
{
    studentDB db = malloc(sizeof(*db));
 	db->number = 0;
	read(db);
    while(1){
        menu();
        int n;
        scanf("%d",&n);
		switch (n){
            case 1: display(db);break;//展示
            case 2: insert(db);break;//增加
			case 3: delete(db);break;//删除
			case 4: modify(db);break;//修改
			case 5: search(db);break;//查找
			case 6: sort(db);break;//学号排序
			case 7: avg(db);break;//平均分
			case 8: write(db);break;//保存
			case 9: count(db);break;//及格人数
			case 10: printTopStudent(db);break;//总分第一
			case 0:
				free(db);
				return 0;
			default: break;
		}
	}
 	free(db);
	return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/607964
推荐阅读
相关标签
  

闽ICP备14008679号