程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> c#簡單的學生成績排序

c#簡單的學生成績排序

編輯:關於C#
 

code//TestStudent.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace TestStudent
{
public class Student : IComparable
{
private string name;
private float score;
public Student()
{
}
public Student(string name, float score)
{
this.name = name;
this.score = score;
}
public string Name
{
set
{
this.name = value;
}
get
{
return this.name;
}
}

public float Score
{
set
{
this.score = value;
}
get
{
return this.score;
}
}
public int CompareTo(object obj)
{
return (int)(this.score - ((Student)obj).score);
}

}
}

//main.cs
using System;
using System.Collections;
using System.Linq;
using System.Text;

namespace TestStudent
{
class Program
{
static void Main(string[] args)
{
ArrayList arr = new ArrayList();
string line = Console.ReadLine();
while (line != "Exit" && line != "Sort" )
{
string[] infos = line.Split(new char[] { ' ' });
Student s = new Student(infos[0], float.Parse(infos[1]));
arr.Add(s);
line = Console.ReadLine();
}
if (line == "Sort")
{
arr.Sort();
for (int i = 0; i < arr.Count; i++)
{
Console.WriteLine(((Student)arr[i]).Name + " : " + ((Student)arr[i]).Score.ToString());
}
}
Console.ReadKey();
}
}
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved