为了正常的体验网站,请在浏览器设置里面开启Javascript功能!

Also very involved(也很投入)

2018-08-08 25页 doc 70KB 7阅读

用户头像

is_037433

暂无简介

举报
Also very involved(也很投入)Also very involved(也很投入) Also very involved(也很投入) The front page of Baidu | Baidu know | login HR answers your job search question How can I find my favorite job? We have invited Baidu, Lining, WAL-MART and other famous enterprises HR, as well as career planners...
Also very involved(也很投入)
Also very involved(也很投入) Also very involved(也很投入) The front page of Baidu | Baidu know | login HR answers your job search question How can I find my favorite job? We have invited Baidu, Lining, WAL-MART and other famous enterprises HR, as well as career planners, for your advice. See the news page Post Bar MP3 photo video encyclopedia library help | set Baidu knows > Computer / Network > operating system / system failure Request a student achievement management system experiment report Reward points: 10 time: 2008-7-5 19:59 | | questionger: sunyu0713 Template as follows: Course design of advanced language programming Experiment report Title: student achievement management system Major: Class: Full name: Grade: Tutor: Completion date: 2008, 06, 24 I. purpose 1. ability to further master and utilize C language for process design; 2, further understanding and application of structured process design ideas and methods; 3, master the basic method of developing a small practical system; 4. Learn the basic method of debugging a longer program; 5. Learn how to represent algorithms using flowcharts or N-S diagrams; 6 、 master the ability to write and design documents; Two content and design thought. (1) system function and analysis (fill in the menu and flow chart you designed). (2) data structure (3) module design According to functional needs: Source file function name function (3) overall design thought: (4) debugging process: test data and results, what problems have occurred and how to modify them (5) where the program needs to be improved and the results and recommendations of the internship (7) source code list (main code) Best answer C language course design task book Topic: student achievement management Two, purpose and requirements 1. purpose: (1) master the basic ideas and methods of process oriented programming; (2) to master the basic knowledge and skills of C language; (3) the basic knowledge and skills can be used to solve the simple programming problem 2. requirements Basic requirement: 1., we need to use the C language oriented process oriented programming idea to complete the system design; 2. highlight the functional features of the C language and implement each sub function with multiple functions; 3. draw a functional module diagram; 4., a simple interface design, to achieve friendly interaction; 5. has a detailed definition of program flow charts and data structures; 6. proficiency in C language file operations. Innovation requirements: After the basic requirements have been achieved, innovative design can be carried out, such as system user function control, different operation functions for administrators and general level user systems Three, information description Enter a class, the number of students of 10 students, and each student exam three homework (Mathematics, English, computer basis) results. Programming to calculate each student's total score and average points, and according to student performance ranking, and finally print a high to low ranking list of transcripts. Requirement: 1) sorting is implemented with a function. 2) print transcripts include: serial number, student number, math, English, computer, total score, average. 3) fill out the experimental content according to the experiment report and the electronic template format. Four. Function description 1. basic information of students and the scores of selected subjects. 2. basic information inquiries (division, class, sub subjects) and modify. Three For each series or class scores were analyzed (i.e. for single pass rate and average score, excellence rate); 4. analyze the results of the courses (average, highest and lowest points); 5. of the students' test scores to rank (single by departments or class rank, for each class, the same semester overall student achievement ranking, and display the information of all subjects) Five, solutions 1. analyze the functional requirements of the program and divide the program function modules. 2. draw the system flow chart. 3. code preparation. Define data structures and function sub functions. 4. function debugging of program. 5. complete system summary report and instruction manual Six, schedule The course design time is two weeks, completed in four stages: 1. analysis design phase. Guiding teachers should actively guide students to study and study their own problems, make clear the design requirements, find out the implementation methods, according to the needs analysis, overall design, detailed design of these steps. 2. code debugging phase: C code is written according to the design analysis program, then debug the code to achieve the requirements of the subject function. 3. summary report stage: summarize the design work, write the curriculum design instruction, and ask the students to write the requirements analysis, overall design, detailed design, coding, testing steps and content. 4. assessment stage. #include #include The number of #define STU_NUM 10 / * * / macro definition of students Struct student / * define a structure used to store the student number three course grades, the total score and average score. { Char stu_id[20]; / * * / student number; Float score[3]; / * * / three class performance; Float total; / * * / total score; Float aver; / * * / average; }; / * sort with a function to achieve. Void SortScore (student, *stu, int, n) { Student stud; For (int i = 0; I < n-1; i++) For (int j = i+1; J < n; j++) { If (stu[i].total < stu[j].total) { Stud = stu[i]; Stu[i] = stu[j]; Stu[j] = stud; } } } Int, main () { Student stu[STU_NUM]; / * create a structure array with 10 elements, which are used to preserve relevant information of the 10 individuals. * / / * enter the relevant information of the ten students. For (int = I = 0; i10, the results of the two are different. Because the while loop is the first to execute, and the DO-WHILE loop is the first to execute the judgment. For a number greater than 10, the while loop does not execute the loop body once, and the DO-WHILE statement executes a loop body. 14. misuse of variables when defining arrays. Int n; Scanf ("%d", &n); Int a[n]; An array name enclosed in square brackets is a constant expression that can include constants and symbolic constants. That is, C does not allow dynamic definition of the size of an array. 15., when defining an array, the number of elements defined is mistaken as the maximum subscript value that can be made. (main) {static int a[10]={1,2,3,4,5,6,7,8,9,10}; Printf ("%d", a[10]); } The C language states that when defined, a[10] is used to indicate that the a array has 10 elements. The subscript value starts with 0, so the array element a[10] does not exist. 16. static storage is not used when initializing an array. Int a[3]={0,1,2}; It is wrong to initialize the array like this. The C language specifies that only static storage (static) arrays and external storage (exterm) arrays can be initialized. Shall be replaced by: Static int a[3]={0,1,2}; 17. adds the address operator in the address where the address operator should not be added. Scanf ("%s", &str); The C language compiler treats array names as: the array name represents the starting address of the array, and the entry in the scanf function is the character array name, without the need for an address symbol &. Shall be replaced by: Scanf ("%s", STR); 18. also defines the local variables in the parameters and functions. Int max (x, y) Int, x, y, z; {z=x>y? X:y?; Return (Z); } The parameter should be defined outside of the function, and the local variable should be defined within the function. Shall be replaced by: Int max (x, y) Int, x, y; {int z; Z=x>y? X:y?; Return (Z); } C language experience Through this training, increase my learning software interest, although the specific content is not clear software included, but from the course C language, has been found in the fun of programming in the C language learning process also learned a lot of knowledge on the basis of computer application, the body also has a computer a general understanding. The training is the teacher gave examples of procedures, through their own rewriting, to achieve the requirements. First do simple output, step by step to do other patterns, in the actual process of making some mistakes, there will be unexpected harvest, feeling training is very interesting. The knowledge of this term in the concrete operation of the C language has been consolidated, achieve the basic purpose of training, find the shortage, should pay more attention in the future in the machine, and realize the C language has the characteristics of concise statement, flexible use, high efficiency etc.. Found the important role of computer training, especially the understanding of array and cycle. Through the actual operation, learn the basic steps and basic methods of C language programming, develop their own logical thinking ability, and cultivate the ability to analyze and solve problems. Feel deeply not impossible, only unexpected "," unity is strength "," practice is the criterion of truth "," fools"...... Moral. After the time, we hope that we should carry out more practical training, extend the room, and cultivate the students' ability to think independently and improve the actual operation level. Eight, reference: "C programming language tutorial." Reference: C programming language tutorial It helps me Answer: 49 time 2008-6-30 17:10 | me to comment Answer: turn to TA gaxie110 | level Good domain: not yet customized An activity that has not been attended The questioner's assessment of the answer: Thank you。。 Do you have a flow chart? The first 3 parts can be more specific.. If you can And get me the flow chart.. Relevant content 2010-6-27 ~ ~ ~ ~ Jiqiu ~~~VB student achievement management system experimental design experiment report 2010-6-18 VF test report creation of student achievement management system 2 2007-6-30 for C + + curriculum design experiment report titled: "student achievement management system" 53 2010-5-17 based on the design and implementation of management system for student achievement Web tube, high marks for a complete program, test report.... 2009-1-8 curriculum design for a student achievement management system, requirements are as follows: 6 more questions about C student achievement management system " View the same topic: student achievement management system experiment report Waiting for you to answer 0, answer small speakers, microphone options are gray 1, answer Microsoft cloud computing platform SharePointOnline what is the role? Answer 0 10ubuntu connected to the wireless router of the school, but also to dial-up connection, do not know how to engage in, please... My answer comes with 0 font system did not, who gave me a download address ah 0 answers are there any friends have "six" full version of MP3? Can you send it to me? Or for a few seasons... 1 answer 5win7's Microsoft Office2010, I was uninstalled, and now I can't load it. Ask for help. 3 answer 5, my computer is just bought a few months ago, before the XP system, after the change is W7, ultimate how to view?... 0 answer QQ can not install more questions waiting for you to answer Forward to: Promotion link c language entry software engineer JAVA.NET training high salary employment C language entry software engineer software testing engineer WEB Development Engineer prize.the Hefei collaborative campus. Www.ah-btesting.com C language game development? "Baidu hundred plans start to integrate the advantages of resources 1+1>2 "Baidu hundred plans to provide pre development, mid test, post operation and promotion of one-stop, full range of help! YouXi.Baidu.com/open/ C language entry 0 basic teaching of high starting point of employment! Beida Jade Bird Nanjing Synergy - "Nanjing software talent training base", one of the largest software training campuses in East China! Www.xtbenet.com/showstinfo_4881.htm! User name: Cipher code: Remember my login status Login forgot password Register Baidu account, surf the knowledge ocean C language entry software engineer JAVA.. C language entry software engineer, software test engineer, WEB development engineer, Beida Jade Bird Hefei collaboration Campus Www.ah-btesting.com C language game development? "Baidu hundred dollars.. "Baidu hundred plans to provide pre development, mid test, post operation and promotion of one-stop, full range of help! YouXi.Baidu.com/open/ Introduction to C language, 0 basic teaching, high starting point.. Beida Jade Bird Nanjing Synergy - "Nanjing software talent training base", one of the largest software training campuses in East china! Www.xtbenet.com/showstinfo_4881.htm To Baidu for operating systems / system failures 2010 Baidu using Baidu before reading must know the agreement
/
本文档为【Also very involved(也很投入)】,请使用软件OFFICE或WPS软件打开。作品中的文字与图均可以修改和编辑, 图片更改请在作品中右键图片并更换,文字修改请直接点击文字进行修改,也可以新增和删除文档中的内容。
[版权声明] 本站所有资料为用户分享产生,若发现您的权利被侵害,请联系客服邮件isharekefu@iask.cn,我们尽快处理。 本作品所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用。 网站提供的党政主题相关内容(国旗、国徽、党徽..)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。

历史搜索

    清空历史搜索