资源列表
prime
- 求素数 求模 一些关于关于加密的基本算法,自带数据的,希望修改后使用-prime
1
- Is mainly the Xi an University of Science and Technology matlab programming programs with C
123
- 自动控制原理课程设计报告书,写的不好大家尽量拿去-Principles of curriculum design automation report is badly written as far as possible Naqu
MATLAB
- matlab课程设计报告,写的不好大家尽量拿去-matlab course design report is badly written as far as possible Naqu
javascript
- 精通javascr ipt,这对你学习资料很有帮助了,努力学习里面的事例,对你编程很有帮助的,认真学习.-JAVAscr ipt code is very important to you!!!!!!
liabrary
- JAVA实现的图书管理系统 包括分析说明书-JAVA implementation of library management system including an analysis of manual
lwuitform
- Please read your package and describe it at least 40 bytes in English. System will automatically delete the directory of debug and release, so please do not put files on these two directory.
mscommdelphi
- mscomm控件用于 delphi串口通讯-mscomm control for delphi serial communications
huiseGM_1_1_
- 基于改进的GM_1_1_模型在人口预测中的应用-GM_1_1_ model based on improved forecasting of the population
yinhangjiasuanfa
- 银行家算法是操作系统中避免死锁的典型算法,本实验可以加深对银行家算法的步骤和相关数据结构用法的更好理解.里面含有完整的代码及报告!-Banker' s algorithm is the operating system, a typical algorithm to avoid deadlock, this experiment can deepen their understanding of Banker' s algorithm steps and associated dat
c
- 定义一个车(vehicle)基类,有Run、Stop等成员函数,由此派生出自行车(bicycle)类、汽车(motorcar)类,从bicycle和motorcar派生出摩托车(motorcycle)类,它们都有Run、Stop等成员函数。在main()函数中定义vehicle、bicycle、motorcar、motorcycle的对象,调用其Run()、Stop()函数,观察其执行情况。再分别用vehicle类型的指针来调用这几个对象的成员函数,看看能否成功;把Run、Stop定义为虚函数,