用C#创建一个学生信息管理系统
时间: 2023-10-19 09:06:26 浏览: 105
学生信息管理系统可以包括以下功能:
- 添加学生信息
- 修改学生信息
- 删除学生信息
- 查询学生信息
- 显示所有学生信息
下面是一个简单的 C# 学生信息管理系统的实现示例:
```csharp
using System;
using System.Collections.Generic;
class Student
{
public string Name { get; set; }
public int Age { get; set; }
public string Gender { get; set; }
public string ID { get; set; }
public Student(string name, int age, string gender, string id)
{
Name = name;
Age = age;
Gender = gender;
ID = id;
}
}
class Program
{
static List<Student> students = new List<Student>();
static void Main(string[] args)
{
while (true)
{
Console.WriteLine("请选择操作:");
Console.WriteLine("1. 添加学生信息");
Console.WriteLine("2. 修改学生信息");
Console.WriteLine("3. 删除学生信息");
Console.WriteLine("4. 查询学生信息");
Console.WriteLine("5. 显示所有学生信息");
string choice = Console.ReadLine();
switch (choice)
{
case "1":
AddStudent();
break;
case "2":
UpdateStudent();
break;
case "3":
DeleteStudent();
break;
case "4":
QueryStudent();
break;
case "5":
ShowAllStudents();
break;
default:
Console.WriteLine("请选择正确的操作!");
break;
}
}
}
static void AddStudent()
{
Console.WriteLine("请输入学生姓名:");
string name = Console.ReadLine();
Console.WriteLine("请输入学生年龄:");
int age = int.Parse(Console.ReadLine());
Console.WriteLine("请输入学生性别:");
string gender = Console.ReadLine();
Console.WriteLine("请输入学生学号:");
string id = Console.ReadLine();
students.Add(new Student(name, age, gender, id));
Console.WriteLine("添加学生信息成功!");
}
static void UpdateStudent()
{
Console.WriteLine("请输入要修改的学生学号:");
string id = Console.ReadLine();
Student student = students.Find(s => s.ID == id);
if (student == null)
{
Console.WriteLine("未找到该学生信息!");
return;
}
Console.WriteLine("请输入新的学生姓名(回车不修改):");
string name = Console.ReadLine();
if (!string.IsNullOrWhiteSpace(name))
{
student.Name = name;
}
Console.WriteLine("请输入新的学生年龄(回车不修改):");
string ageStr = Console.ReadLine();
if (!string.IsNullOrWhiteSpace(ageStr))
{
int age = int.Parse(ageStr);
student.Age = age;
}
Console.WriteLine("请输入新的学生性别(回车不修改):");
string gender = Console.ReadLine();
if (!string.IsNullOrWhiteSpace(gender))
{
student.Gender = gender;
}
Console.WriteLine("修改学生信息成功!");
}
static void DeleteStudent()
{
Console.WriteLine("请输入要删除的学生学号:");
string id = Console.ReadLine();
Student student = students.Find(s => s.ID == id);
if (student == null)
{
Console.WriteLine("未找到该学生信息!");
return;
}
students.Remove(student);
Console.WriteLine("删除学生信息成功!");
}
static void QueryStudent()
{
Console.WriteLine("请输入要查询的学生学号:");
string id = Console.ReadLine();
Student student = students.Find(s => s.ID == id);
if (student == null)
{
Console.WriteLine("未找到该学生信息!");
return;
}
Console.WriteLine($"姓名:{student.Name}");
Console.WriteLine($"年龄:{student.Age}");
Console.WriteLine($"性别:{student.Gender}");
Console.WriteLine($"学号:{student.ID}");
}
static void ShowAllStudents()
{
Console.WriteLine("所有学生信息如下:");
foreach (Student student in students)
{
Console.WriteLine($"姓名:{student.Name}");
Console.WriteLine($"年龄:{student.Age}");
Console.WriteLine($"性别:{student.Gender}");
Console.WriteLine($"学号:{student.ID}");
Console.WriteLine();
}
}
}
```
这个学生信息管理系统使用了一个 `List<Student>` 容器来存储所有学生信息,通过菜单选择不同的操作来实现添加、修改、删除、查询和显示所有学生信息的功能。其中 `Student` 类定义了学生的属性和构造函数。
阅读全文