freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于單片機(jī)控制的電動(dòng)自行車(chē)?yán)锍瘫淼漠厴I(yè)設(shè)計(jì)含原理圖pcb圖中英文翻譯程序-資料下載頁(yè)

2025-01-18 16:23本頁(yè)面
  

【正文】 最終的結(jié)果,可貴的是過(guò)程中的收獲。以此語(yǔ)言來(lái)安撫我尚沒(méi)平復(fù)的心。畢業(yè)設(shè)計(jì),也許是我大學(xué)生涯交上的最后一個(gè)作業(yè)了。想籍次機(jī)會(huì)感謝在校期間二年以來(lái)給我?guī)椭乃欣蠋?、同學(xué),你們的友誼是我人生的財(cái)富,是我生命中不可或缺的一部分。我的畢業(yè)指導(dǎo)老師汪小鋒老師,雖然我們是在開(kāi)始畢設(shè)時(shí)才認(rèn)識(shí),但他卻給我不厭其煩的指導(dǎo),并提供了很多與該研究相關(guān)的重要信息,培養(yǎng)了我們對(duì)科學(xué)研究的嚴(yán)謹(jǐn)態(tài)度和創(chuàng)新精神。這將非常有利于我們今后的學(xué)習(xí)和工作。在此表示衷心的感謝! 本次畢業(yè)設(shè)計(jì)還得到了課題組的各位老師的大力協(xié)助,在此一并表示我們的感謝!參考文獻(xiàn)[1]張友德,趙志英,涂時(shí)亮. 單片微型機(jī)原理、應(yīng)用與實(shí)驗(yàn)[M].上海:復(fù)旦大學(xué)出版社,2000.[2]勒達(dá). 單片機(jī)應(yīng)用系統(tǒng)開(kāi)發(fā)實(shí)例導(dǎo)航[M].北京:人民郵電出版社,2003.[3]薛鈞義,張彥斌. 單片微型計(jì)算機(jī)及其應(yīng)用[D].西安:西安交通大學(xué)出版社,2001.[4][D].重慶:科學(xué)文獻(xiàn)出版社重慶分社,1987.[5][M].北京:人民郵電出版社,1995.[6][M].北京:北京航空航天大學(xué)出版社,1996.[7][M].上海:高等教育出版社, 1992.[8][M].北京:科學(xué)出版社, 1997.[9][M].哈爾濱:哈爾濱工業(yè)大學(xué)出版社 ,1997.[10][M].重慶:重慶大學(xué)出版社,2004.[11][J].中國(guó)學(xué)術(shù)期刊,2004,6(5):5661.[12][J].中國(guó)學(xué)術(shù)期刊,2006,3(8):1825.[13] method of developing 80C552 microcontroller on MCS51 device[J].East China Institute of Metallurgy,1998 ,14(27):101125.[14] an MCS51 Microcontronller to an 82527 CAN Controller[J]. Iondon Macmillan PRESS LTD,1996,5(80):3240.[15]Philips ICBus Specification Version()[J].USA,2000,17(35):7183.附錄1 中英文文獻(xiàn)The C Programming LanguageC is a highlevel programming language developed by Dennis Ritchie and Brian Kernighan at Bell Labs in the mid1970s. Although originally designed as a systems programming language, C has proved to be a powerful and flexible language that can be used for a variety of applications, from business programs to engineering. C is a particularly popular language for personal puter programmers because it is relatively smallit requires less memory than other languages.The first major program written in C was the UNIX operating system。 and for many years, C was considered to be inextricably linked with UNIX. Now, however, C is am important language independent of UNIX. Although it is a highlevel languages, C is much closer to assembly language than are most other highlevel languages. This closeness to the underlying machine language allows C programmers to write very efficient code. The howlevel nature of C, however, can make the language difficult to use for some types of applications.Now let’s take an overview of the C programming language, both historically and technically and technically.As a generalpurpose programming language, C has been closely associated with UNIX system where it was developed, since both the system and most of the applications that run on it are written in C. The language , however, is not tied to any one operating system or machine。 and although it has been called a “system programming language” because it is useful for writing pilers and operating systems, it has been used equally well to write major programs in various fields.Many of the important ideas stem from the language BCPL, developed by Martin Richards. The influence of BCPL on C proceeded indirectly through the language B, which was written by Ken Tompson in 1970 for the first UNIX system on the DECPDP7.BCPL and B are “typeless” languages. By contrast, C provides a variety of data types. The fundamental types are characters, and integers and floating point numbers of several sizes. Additionally, there is a hierarchy of derived data types created with pointers, arrays, structures, and unions. Expressions are formed from operands。 any expression, including an assignment or a function call, can be a statement. Pointers provide for machineindependent address arithmetic. C provides the fundamental controlflow constructions required for wellstructured programs: statement grouping, decision making (ifelse) , selecting one of a set of possible cases (switch), looping with the termination test at the top (while, for) or at the bottom (do), and early loop exit (break).Functions may return values of basic type, structures, unions, or pointers. Any function may be called recursively. Local variables are typically “automatic”, or created anew with each invocation. Function definitions may not be nested but variables may be declared in a blockstructured fashion. The functions of a C program may exist in separate source files that are piled individually. Variables may be internal to a function, external but known only within a single source files, or visible to the entire program.A preprocessing step performs macro substitution on program text, inclusion of other source file, and conditional pilation. C is a relatively lowlevel language, meaning that C deals with the same sort of objects that most puters do, namely characters, numbers, and addresses. These may be bined and moved about with the arithmetic and logical operators implemented by real machines.C provides no operations to deal directly with poseite objects such as character strings, sets, lists, or arrays. There are no operations that manipulate an entire any storage allocation facility other than static definition and the stack discipline provided by the local variables of functions。 there are no heap or garbage collection . Finally, C itself provides no input/output facilities。 there are no Read or Write statements, and no builtin file access methods. All of these higherlevel mechanisms must be provided by explicitlycalled functions. Most C implementations have included a reasonably standard collection of such functions.Similarly, C offers only straightforward, singlethread control flow: tests, loops, grouping, and subprograms, but not multiprogramming, parallel operations, synchronization, or coroutines.Although the absence of some of these features may seem like a grave deficiency, keeping the language down to modest size has real benefits. Since C is relatively small, it can be described in a small space, and learned quickly. A programmer can reasonably expect to know and understand and indeed regularly use the entire language.In 1983, the American National Standard Institute (ANSI) established a mittee to provide a modern, prehensive definition of C. The resulting definition, the ANSI standard, or “ANSI C”, was pleted late in 1988. Most of the features of the standard are alread
點(diǎn)擊復(fù)制文檔內(nèi)容
環(huán)評(píng)公示相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1