Welcome![Sign In][Sign Up]
Location:
Search - 实验三

Search list

[GDI-Bitmap实验三圆的中点转换算法

Description: 课堂上老师要求做的实验三。实现圆的中点转换算法。-class, the teacher asked to do the experiment three. Circle the midpoint conversion algorithm.
Platform: | Size: 4760 | Author: 郑平 | Hits:

[Other单片机实验实训指导书

Description: 目 录 实验 实验一:WAVE软件使用 实验二:常用指令的使用练习 实验三:循环程序 实验四:查表程序 实验五:数制转换程序 实验六 实用子程序:(编程器的使用) 实验七:中断/定时程序 实验八:输入检测与输出显示程序 课设 一、课程设计目的和意义 二、实验电路系统的结构和使用方法 三、设计参考题目介绍和设计提示性思考题 四、设计任务书及要求 五、课程设计报告格式及要求 六、考核办法 七、课程设计内容及学时安排 -a directory The Experiment : WAVE experimental use of two software : the use of commonly used instructions practice experiment 3 : Experimental procedures cycle 4 : Experimental procedures Lookup 5 : Number System conversion experiments six practical Subroutine : (programmer use) experiment 7 : N / A regular eight experimental procedure : Admission Detection and output procedures set up a lesson, curriculum design purpose and significance of two experimental circuit system of the structure and use three methods, reference design and design topics introduced indicative thinking that four design tasks and requirements of five books, curriculum design and the reporting format required six, seven assessment methods, curriculum design within discipline and school arrangements
Platform: | Size: 391494 | Author: 王忠远 | Hits:

[assembly language微机原理实验源程序

Description: 微机原理实验源程序,总共有八个实验内容的源程序。实验一 简单输入、输出实验 实验五 8253定时器实验 实验二 软件延时实验 实验六 LED显示实验 实验三 软件延时模拟路口交通灯控制 实验七 定时器LED显示综合实验 实验四 LED简单显示实验 实验八 模拟交通灯显示综合实验-Computer Engineering Experiment source, a total of eight experimental content of the source. Experimental a simple input and output The Experiment 5 8253 timer The Experiment 2 software delay experiment experimental six LED Display experimental three experimental simulation software delay junction traffic signal control experiment 7 timer LED Display Integrated Experiment Experiment 4 LED simple experimental simulation experiments eight traffic lights comprehensive experiment shows
Platform: | Size: 3757 | Author: 雪原 | Hits:

[OS program实验三 进程调度实验

Description: 进程调度实验 用高级语言编写和调试一个进程调度程序,以加深对进程的概念及进程调度算法的理解。-process of scheduling trials and the preparation of high-level language debugging process of scheduling a procedure to enhance the concept of the process and the process of scheduling algorithm understanding.
Platform: | Size: 26704 | Author: 肖建 | Hits:

[WEB Code实验三 局域网组网的综合实验

Description: 实验三 局域网组网的综合实验 你可以参考以下了,帮助你完成实验!-three experimental LAN network of comprehensive experiment you can refer to the following, to help you complete the experiment!
Platform: | Size: 99506 | Author: chenfeng | Hits:

[assembly languageA/D转换实验

Description: ;"通用模块实验例程"实验三 A/D转换实验
Platform: | Size: 1091 | Author: nhsyzx20723@126.com | Hits:

[OtherC++程序设计语言实验三

Description: 实验三:C++编程入门 一、实验内容 1. 类模版。 2. 运算符重载。 3. 友元。 4. 继承。 二、实验题目 1, 设计一个类SavingsAccount,定义一个静态数据成员记录存款的年利率(rate),该类的每个成员都包含一个私有的数据成员balance,表示该成员当前的存款数额。提供一个成员函数CalMonthlyInterest(),用以计算月利息(用balance乘以rate再除以12),并将这个月利息加入balance中。提供一个静态成员函数ModifyRate(),用以改变静态数据成员rate的值。定义两个不同的SavingsAccount对象saver1和saver2,当前存款数额balance分别为2000.00和3000.00。首先将rate设置为3%,计算每个存款人的月息并打印新的结果,然后将rate设置为4%,再次计算每个存款人的月息并打印新的结果。 2, 设计一个学生类student,包括学生学号、姓名、成绩;设计一个友元函数,比较某两个学生成绩的高低;读入一个文本文件(格式如示例studengt.txt,每行的学号、姓名、成绩之间用四个空格隔开)中所有学生的学号、姓名、成绩,输出最高成绩和最低成绩的学生信息(学号、姓名、成绩)。 3, 阅读下面例子,将题中的Time类声明为Data类的友元类,通过Time类中的display函数引用Data类的私有数据,输出年、月、日和时、分、秒。 #include <iostream> using namespace std; class Date; //对Date类的提前引用声明 class Time //定义Time类 { public: Time(int,int,int); void display(Date &); //display是成员函数,形参是Date类对象的引用 private: int hour; int minute; int sec; }; class Date //声明Date类 { public: Date(int,int,int); friend void Time∷display(Date &); //声明Time中的display函数为友元成员函数 private: int month; int day; int year; }; Time∷Time(int h,int m,int s) //类Time的构造函数 { hour=h; minute=m; sec=s; } void Time∷display(Date &d) //display的作用是输出年、月、日和时、分、秒 { cout<<d.month<<″/″<<d.day<<″/″<<d.year<<endl; //引用Date类对象中的私有数据 cout<<hour<<″:″<<minute<<″:″<<sec<<endl; //引用本类对象中的私有数据 } Date∷Date(int m,int d,int y) //类Date的构造函数 { month=m; day=d; year=y; } int main( ) { Time t1(10,13,56); //定义Time类对象t1 Date d1(12,25,2004); //定义Date类对象d1 t1.display(d1); //调用t1中的display函数,实参是Date类对象d1 return 0; } 4, 将下面程序改为在类模板外定义各成员函数: #include <iostream> using namespace std; template<class numtype> //定义类模板 class Compare { public: Compare(numtype a,numtype b) { x=a;y=b; } numtype max( ) { return (x>y)?x:y; } numtype min( ) { return (x<y)?x:y; } private: numtype x,y; }; int main( ) { Compare<int> cmp1(3,7); //定义对象cmp1,用于两个整数的比较 cout<<cmp1.max( )<<″ is the Maximum of two integer numbers.″<<endl; cout<<cmp1.min( )<<″ is the Minimum of two integer numbers.″<<endl<<endl; Compare<float> cmp2(45.78,93.6); //定义对象cmp2,用于两个浮点数的比较 cout<<cmp2.max( )<<″ is the Maximum of two float numbers.″<<endl; cout<<cmp2.min( )<<″ is the Minimum of two float numbers.″<<endl<<endl; Compare<char> cmp3(′a′,′A′); //定义对象cmp3,用于两个字符的比较 cout<<cmp3.max( )<<″ is the Maximum of two characters.″<<endl; cout<<cmp3.min( )<<″ is the Minimum of two characters.″<<endl; return 0; } 5, 有两个矩阵a和b,均为2行3列,求两个矩阵的和。重载运算符“+”使之用于矩阵相加。如:c=a+b。重载插入运算符“<<”和流提取运算符“>>”,使之能用于该矩阵的输入和输出。 6, 利用类继承分别完成一个学生类、一个大学生类、一个本科生类,本科生类中包括了一个学生作为他的班长。在创建一个本科生对象时赋予他的全部信息,输出该本科生对象的全部信息。 7, 利用c++继承、多态虚函数、构造函数完成以下程序:设计人、老师、学生、大学生、研究生、大四学生等类、其主要属性自己定义,要求包括以下方法: 1) 构造函数,创建对象的主要信息 2) Display,显示每种类对象的主要信息 此外,要求每个类包含一个生日对象,其类型为Birthday类,学生类应该包含一个班主任对象,其类型为老师类。 三、实验要求  将程序源代码压缩后提交至学院FTP上对应实验和班级的目录中。  作业命名方式为:“学号姓名.rar”。  作业提交时间:下次实验课前提交。
Platform: | Size: 1255695 | Author: zhuchao0731@163.com | Hits:

[Documents北邮汇编实验三

Description: 北邮的汇编软件试验三
Platform: | Size: 74196 | Author: 35ejun | Hits:

[Documents计算机网络实验三

Description: 计算机网络实验三
Platform: | Size: 235008 | Author: 1054890255 | Hits:

[assembly language微机原理实验源程序

Description: 微机原理实验源程序,总共有八个实验内容的源程序。实验一 简单输入、输出实验 实验五 8253定时器实验 实验二 软件延时实验 实验六 LED显示实验 实验三 软件延时模拟路口交通灯控制 实验七 定时器LED显示综合实验 实验四 LED简单显示实验 实验八 模拟交通灯显示综合实验-Computer Engineering Experiment source, a total of eight experimental content of the source. Experimental a simple input and output The Experiment 5 8253 timer The Experiment 2 software delay experiment experimental six LED Display experimental three experimental simulation software delay junction traffic signal control experiment 7 timer LED Display Integrated Experiment Experiment 4 LED simple experimental simulation experiments eight traffic lights comprehensive experiment shows
Platform: | Size: 3072 | Author: 雪原 | Hits:

[OS program实验三 进程调度实验

Description: 进程调度实验 用高级语言编写和调试一个进程调度程序,以加深对进程的概念及进程调度算法的理解。-process of scheduling trials and the preparation of high-level language debugging process of scheduling a procedure to enhance the concept of the process and the process of scheduling algorithm understanding.
Platform: | Size: 26624 | Author: 肖建 | Hits:

[OtherThree三次样条插值

Description: 计算机数值分析实验题目 三次样条插值的程序 满足三次样条插值的三弯矩法 编制第一与第二边界条件的程序-Computer Numerical Analysis Experiment topics cubic spline interpolation procedures meet cubic spline interpolation of three Moment preparing for the first and second boundary conditions procedures
Platform: | Size: 1024 | Author: 赵传仕 | Hits:

[GDI-Bitmap实验三圆的中点转换算法

Description: 课堂上老师要求做的实验三。实现圆的中点转换算法。-class, the teacher asked to do the experiment three. Circle the midpoint conversion algorithm.
Platform: | Size: 4096 | Author: 郑平 | Hits:

[Other单片机实验实训指导书

Description: 目 录 实验 实验一:WAVE软件使用 实验二:常用指令的使用练习 实验三:循环程序 实验四:查表程序 实验五:数制转换程序 实验六 实用子程序:(编程器的使用) 实验七:中断/定时程序 实验八:输入检测与输出显示程序 课设 一、课程设计目的和意义 二、实验电路系统的结构和使用方法 三、设计参考题目介绍和设计提示性思考题 四、设计任务书及要求 五、课程设计报告格式及要求 六、考核办法 七、课程设计内容及学时安排 -a directory The Experiment : WAVE experimental use of two software : the use of commonly used instructions practice experiment 3 : Experimental procedures cycle 4 : Experimental procedures Lookup 5 : Number System conversion experiments six practical Subroutine : (programmer use) experiment 7 : N/A regular eight experimental procedure : Admission Detection and output procedures set up a lesson, curriculum design purpose and significance of two experimental circuit system of the structure and use three methods, reference design and design topics introduced indicative thinking that four design tasks and requirements of five books, curriculum design and the reporting format required six, seven assessment methods, curriculum design within discipline and school arrangements
Platform: | Size: 391168 | Author: 王忠远 | Hits:

[Other实验三

Description: 该压缩包为西南科技大学编译原理蒋勇老师实验课中实验三课程内容,可实现语义及代码生成。(The compressed package for the Southwest University of Science and Technology compiler theory, Jiang Yong teacher experiment course experiment three course content, can achieve semantic and code generation.)
Platform: | Size: 12670976 | Author: 踮起脚尖 | Hits:

[OS Develop计算机操作系统实验三

Description: 进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。 每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。 进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。进程的运行时间以时间片为单位进行计算。每个进程的状态可以是就绪 W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。就绪进程获得 CPU后都只能运行一个时间片。用已占用CPU时间加1来表示。 每进行一次调度程序都打印一次运行进程、就绪队列、以及各个进程的 PCB,以便进行检查。(Process scheduling algorithm: the highest priority number of priority scheduling algorithm (that is, the processor is assigned to the highest priority process) and first come first service algorithm. Each process has a process control block (PCB) representation. Process control blocks can contain the following information: process name, priority number, arrival time, run time, CPU time, process status, and so on. The priority number of the process and the required run time can be specified artificially (or by random numbers). The process's arrival time is the process's input time. The running time of a process is calculated as a time slice. The state of each process can be one of the three states of ready W (Wait), running R (Run), or completion of F (Finish). Once the ready process gets CPU, it can only run one time slice. Represented by taking CPU time plus 1. Each time the scheduler prints a run, a ready queue, and the PCB of each process for inspection.)
Platform: | Size: 238592 | Author: yyyyyyyzh | Hits:

[Other杭电计算机组成原理多功能ALU设计实验3

Description: 计算机组成原理实验三 多功能ALU设计实验(Computer composition experiment three Design experiment of multifunction ALU)
Platform: | Size: 108544 | Author: yukiakari | Hits:

[Other《软件项目开发与管理》实验指导书

Description: 《软件项目开发与管理》实验指导书 实验一 项目计划制定 实验二 理解项目 实验三 资源管理、成本管理 实验四 项目控制和动态跟踪("Software project development and management" experimental guide)
Platform: | Size: 1143808 | Author: SHADOW丶 | Hits:

[Other实验3

Description: 实验3 简单多边形显示 实验目的:通过鼠标响应函数输入并显示多边形 基本内容: 通过鼠标依次输入n个顶点(n>=3),显示多边形。 1)建立多边形数据结构(保存顶点表、边信息,及其他信息) 2)用opengl显示多边形(Experiment 3 simple polygon display Experiment Objective: input and display polygon through mouse response function. Basic contents: The n vertices (n>=3) are displayed by mouse in order to display polygons. 1) build polygon data structure (save vertex table, side information, and other information). 2) use OpenGL to display polygons.)
Platform: | Size: 548864 | Author: 饭饭面团 | Hits:

[Other电路实验

Description: 实验一四位拨码开关控制显示数字0000~FFFF 实验二拨码开关控制数字0~F循环显示 实验三二位数码管循环显示数字00~FF 实验四二位数码管循环显示数字00~99(Experiment 1 Four-bit Dial Switch Control Display Digital 0000~FFFF Digital 0~F Cyclic Display Controlled by Experiment 2 Dial Switch Cyclic Display Digital 00~FF of Tri-Binary Digital Tube in Experiment Experiment 4-2-digit digital tube circular display number 00-99 (optional))
Platform: | Size: 836608 | Author: sidwong | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net