搜索资源列表
graphics
- 1)给出系统框架。 2)调用画点的函数,分别用DDA、中点Bresenham算法和改进Bresenham算法绘制直线和中点算法绘制直线、用不同的算法绘制圆和椭圆 ,并各自比较算法精度与效率的差别 。 3)实现二维图形的变换。(包括平移,放缩,旋转,错切以及复合变换) 4)运用所学的区域填充算法实现区域填充。 5)运用所学算法实现线段裁剪以及多边形裁剪(多边形裁剪为可选)。 6)自己实现其它附加以及需要完善的功能。 -1) give system framework.
xuhanshu
- 利用多态性可以设计和实现一个易于扩展的系统。在C++程序设计中,多态性是指具有不同功能的函数可以用同一个函数名,这样就可以用一个函数名调用不同内容的函数。 -The use of polymorphism can design and implement a scalable system. In C++ programming, polymorphism refers to a function with different functions can use the same funct
SysTime
- 获取系统时间,可达到毫秒级,可将得到的时间换算成可用于计算的数据类型。此函数可被直接调用,也可用于参考以进一步的开发功能。-Get the system time, up to milliseconds, the time can be converted will be used to calculate the data type. This function can be called directly, Can also be used to further the developm
cmobliphone
- C语言实现设计一个简易的手机通讯录管理系统。该题目要求在熟练掌握C语言的基本知识:数据类型(整形、实型、字符型、指针、数组、结构等);运算类型(算术运算、逻辑运算、自增自减运算、赋值运算等);程序结构(顺序结构、判断选择结构、循环结构);大程序的功能分解方法(即函数的使用)等。进一步掌握各种函数的应用,包括时间函数、、绘图函数,以及文件的读写操作等。-Design a simple mobile phone address book management system. The subject
student
- 实现了一个学生信息输入,在控制台中输入学生信息,再输入吃饭睡觉参数,程序会输出相关系统,以及调用函数后的结果-student information input and output
C-language-get-time
- 这个文件综合了多种在C语言中获取当前系统时间的函数。读者可以根据对时间的具体要求,选择其中的函数。-This file is a combination of a variety of access to the function of the current system time in C language. Readers according to the specific requirements of the time, choose the function.
Student-Manege-System-(console)
- 一个控制台版本的学生学生管理系统 类模板 + 链表 +虚函数 + 快速排序 -The student student management system class template of a console version+ the linked list+ virtual function+ Quick sorted
wyj004
- C语言课程设计,学生信息管理系统。由C语言编写的命令行程序,使用文件存储学生信息。编制了严格的输入约束函数,避免了用户的误操作,控制了输入输出的格式。-C language curriculum design, student information management system. Command line program written in C language, using file to store the students information. It has strictl
test
- 初始化Opengvs,包括系统自身的调用和回调用户的函数。-Initialization Opengvs, including call and callback function of the user of the system itself.
LRU_OSmode
- 利用VC和ege图形函数库编写基于LRU的请求分页模拟操作系统。模拟的功能有文件系统,鼠标响应,进程调度等。-VC and ege use graphics library written request LRU paging simulation operating system is based. Analog features include file systems, the mouse response, process scheduling.
lab02
- f(n)=f(n-1)+f(n-2) f(0)=f(1)=1,求斐波那契数列第20项,分别用循环和递归的方式,比较时间效率。提示:可以使用c函数clock取出当前系统时间,计算前后各一次,两次相减除以每秒的时钟数,就可以得到以秒为单位的差距-f (n) = f (n-1)+ f (n-2) f (0) = f (1) = 1, Item 20 seeking Fibonacci number Fibonacci sequence that were circulating and recursi
out-string
- 测试函数调用是否成功。 测试编译系统连接正常与否。-Test function call was successful. Test compilation system is connected properly or not.
frmmain
- 上海交大版计算机联锁仿真系统,系统主函数的代码,还有几个块,需要的联系- 上海交大版计算机联锁仿真系统,系统主函数的代码,还有几个块,需要的联系 Shanghai Jiaotong University computer interlocking simulation system, the main function of the system code, there are a few blocks, the need to contact
Class-Student
- 5. 设计一个学生类CStudent,该类有以下几个私有成员变量:学生姓名、学号和性别和三门课的成绩。有实现下述功能的成员函数:1)初始化学生姓名、学号、性别和年龄;2)输入四门课的成绩,并计算平均成绩和总成绩;3)输出学生信息。以CStudent类为基础设计开发一个学生成绩管理系统。要求具有以下功能: 1) 运行程序后显示以下信息:1、Display all information 2、Add a student 3、Delete a student 4、Quit 2) 按