用c#语言编写学生管理系统
时间: 2023-07-20 22:05:25 浏览: 116
下面是一个简单的学生管理系统的C#代码示例:
```csharp
using System;
namespace StudentManagementSystem
{
class Program
{
static void Main(string[] args)
{
// 创建一个学生数组
Student[] students = new Student[3];
// 添加学生到数组中
students[0] = new Student("张三", 90);
students[1] = new Student("李四", 80);
students[2] = new Student("王五", 70);
// 输出学生信息
Console.WriteLine("学生信息如下:");
foreach (Student student in students)
{
Console.WriteLine(student.Name + " 的成绩为:" + student.Score);
}
// 计算平均成绩
double totalScore = 0;
foreach (Student student in students)
{
totalScore += student.Score;
}
double averageScore = totalScore / students.Length;
Console.WriteLine("平均成绩为:" + averageScore);
// 等待用户输入
Console.ReadKey();
}
}
// 学生类
class Student
{
public string Name { get; set; }
public int Score { get; set; }
public Student(string name, int score)
{
Name = name;
Score = score;
}
}
}
```
这个学生管理系统包含一个 `Student` 类和一个 `Program` 类。`Student` 类表示一个学生,包含学生的姓名和分数属性。`Program` 类是应用程序的入口点,创建一个学生数组,并计算平均分数。
阅读全文