考试系统中简答题自动判分的实现
考试系统简答题自动判分实现原理简介,希望对你有帮助,哈哈
中文分词软件
中文简体分词工具,在开发主观题评分,在线商城及其他系统时希望对你有帮助
汉诺塔演示 C#
汉诺塔演示 C# .NET
/// <summary>
/// 显示移动盘子
/// </summary>
private void ShowPlate() {
for (int i = 0; i < listA.Count; i++) {
Label plate = (Label)listA[i];
//int size = (int)plate.Tag;
plate.Location = new Point(pillar1.Left + pillar1.Width / 2 - plate.Width / 2, pillar1.Top + pillar1.Height - (i+1) * plate.Height);
//Console.WriteLine("{0}:size={1}:location=({2},{3})", "A", size, plate.Left, plate.Top);
}
for (int i = 0; i < listB.Count; i++) {
Label plate = (Label)listB[i];
//int size = (int)plate.Tag;
plate.Location = new Point(pillar2.Left + pillar2.Width / 2 - plate.Width / 2, pillar2.Top + pillar2.Height - (i + 1) * plate.Height);
//Console.WriteLine("{0}:size={1}:location=({2},{3})", "B", size, plate.Left, plate.Top);
}
for (int i = 0; i < listC.Count; i++) {
Label plate = (Label)listC[i];
//int size = (int)plate.Tag;
plate.Location = new Point(pillar3.Left + pillar3.Width / 2 - plate.Width / 2, pillar3.Top + pillar3.Height - (i + 1) * plate.Height);
//Console.WriteLine("{0}:size={1}:location=({2},{3})", "C", size, plate.Left, plate.Top);
}
if (listC.Count == n) {
MessageBox.Show(this,"盘子移动结束!","提示");
domainUpDown.Enabled = true;
btnOperate.Enabled =false;
btnStart.Enabled = true;
}
}
等。。。。。
企业人事管理系统
企业人事管理系统,含所有代码.根据企业对人事管理的要求,本系统可以实现以下目标:
操作简单方便、界面简洁美观。
在查看员工信息时,可以对当前员工的家庭情况、培训情况进行添加、修改、删除的操作。
方便快捷的全方位数据查询。
按照指定的条件对员工进行统计。
可以将员工信息以表格的形式插入到Word文档中。
实现数据库的备份、还原及清空的操作。
由于该系统的使用对象较多,要有较好的权限管理。
能够在当前运行的系统中重新进行登录。
系统运行稳定、安全可靠。