登录
首页 » C++ » 成绩管理系统 鼠标界面

成绩管理系统 鼠标界面

于 2022-05-28 发布 文件大小:1.29 MB
0 94
下载积分: 2 下载次数: 1

代码说明:

成绩管理系统 鼠标界面版。包含可执行文件,完整程序。提示:运行程序前先将《学生信息成绩表》放入到F盘!附有成绩单示例。C++语言

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • CDMAfangzhenyufenxi
    选取CDMA通信系统中的接入信道部分进行仿真与分析。首先,通过学习相应的理论知识,熟悉接入信道实现的过程,对每一步的原理有了较深的理解,同时,也对MATALB软件进行熟悉和了解,对MATLAB软件中的SIMULINK部分及其内部的CDMA模块用法和参数设置进行熟悉,然后运用MATLAB软件对接入信道部分进行设计,并逐步地对各个模块进行分析、仿真与验证。目的是通过毕业设计工作熟悉现代无线通信系统的基本构成与基本工作原理(CDMA communication system to select the access channel simulation and analysis of parts. First of all, by learning the theory of knowledge, familiar with the access channel to achieve the process, with each step deeper understanding of the principle, at the same time, but also familiar with the software MATALB and understanding of the MATLAB software and its internal part of the SIMULINK use of the CDMA module and parameter settings are familiar with, and then use MATLAB software to access parts of the design of channel and step by step analysis of each module, simulation and verification. The purpose of design work through graduate familiar with the modern wireless communication systems constitute the basic and fundamental principle,)
    2009-04-16 12:24:20下载
    积分:1
  • 单片机彩色旋转灯
    D1~D8 八个发光二极管构成彩色旋转灯,D9~D13 为档位指示灯,一档旋转速度最慢(周期1s,D13 亮),二档较快(周期0.8s,D12 亮),三档更快(周期0.6s,D11 亮),四档再快(周期0.4s,D10 亮),五档最快(周期0.2s,D10 亮)。四个按键KEY0-KEY1用于设定旋转方向为顺时针旋转或者逆时针旋转,KEY2-KEY3 用于增快或则减慢旋转速度。 按键扫描的方式可以采用前面示例程序中的方法:线反转法或行扫描法。可以用汇编语言实现,也可以用C 语言实现。建议如前面示例所示,汇编采用行扫描法,C 语言用线反转法。程序控制流程是:首先初始化设置默认运行参数,然后读取按键,识别键码,并根据键码的不同执行运行参数调整,最后根据当前的运行参数执行发光二极管D1-D8 的轮流旋转。按键的识别中的键码可以根据图3.11 中的连接情况,总结出其键值表,速度的控制通过控制调用延时程序的次数来决定。
    2022-07-15 17:54:23下载
    积分:1
  • i2c
    能实现i2c的存,取,且可扩展性强! 此程序也可以用于在proteus中仿真。(I2c can realize the deposit, withdraw, and scalability strong! This procedure can also be used in the simulation in Proteus.)
    2008-05-27 21:31:01下载
    积分:1
  • Flip-words
    翻转文字,将www.real.com翻转称为com.real.(Flip text, will flip as com.real.www www.real.com)
    2016-02-17 23:57:24下载
    积分:1
  • 二维稳态导热的数值计算
    说明:  二维稳态导热计算编程,适合需要用编程计算导热问题的(Two-dimensional steady-state heat conduction calculation programming)
    2019-05-25 15:49:59下载
    积分:1
  • 粒子群
    罚函数的目的是将约束化问题转化成无约束化问题。将粒子群的搜索范围都限制在条件约束簇内,即在可行解范围内寻优。
    2023-06-11 05:40:03下载
    积分:1
  • C++ 编程规范
    说明:  C++ 编程规范,101条规则、准则与最佳实践(C++ Programming Specification, 101 Rules, Guidelines and Best Practices)
    2019-05-15 20:47:35下载
    积分:1
  • 数字图像处理增加亮点和对比度
    #include#includeusing namespace cv;int main() {Mat src,dst;src = imread("D:/ps/circle.png");int rows = src.rows;int cols = src.cols;float alpht = 1.8;float bea = 50;dst = Mat::zeros(src.size(), src.type());for (int row = 0; row < rows; row++) {for (int col = 0; col < cols; col++) {int b = src.at(row, col)[0];int g = src.at(row, col)[1];int r = src.at(row, col)[2];dst.at(row, col)[0] = saturate_cast(alpht*b + bea);dst.at(row, col)[1] = saturate_cast(alpht*g + bea);dst.at(row, col)[2] = saturate_cast(alpht*r + bea);}}namedWindow("s", CV_WINDOW_AUTOSIZE);namedWindow("d", CV_WINDOW_AUTOSIZE);imshow("s", src);imshow("d", dst);waitKey(0);r
    2022-05-14 06:46:25下载
    积分:1
  • 16C954driveCode
    16C954芯片,是一个能够执行串口扩展的芯片,利用该芯片,最多能扩展出4个串口,解决了一般性单片机串口不够用的问题。该源码提供了16C954驱动,利用此驱动,可以快速扩展其他串口功能。(16C954 chip, is capable of performing a serial port expansion chip, using the chip, up to four serial ports can be extended out to solve the general problem of single-chip serial enough. The source provides the 16C954 driver, the use of this driver, you can quickly expand to other serial port functions.)
    2015-11-30 11:21:04下载
    积分:1
  • 12864-nrf24l01
    无线模块nrf24l01,51单片机,12864中文液晶(Wireless module nrf24l01, 51 microcontroller, 12864 Chinese LCD)
    2013-08-23 15:21:25下载
    积分:1
  • 696518资源总数
  • 106268会员总数
  • 10今日下载