摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 学生信息录入及排序{ class Program {//用字典实现学生 信息的录入,然后按成绩从高到低排序输出. static void Main(string[] args) { //定义一个字典用于存储学生的姓名和成绩。 Dictionary<string, int> dic = new Dictionary<string, ... 阅读全文
posted @ 2012-10-17 14:30 duguao 阅读(972) 评论(0) 推荐(0) 编辑