基本功能: 1.具有時、分、秒計數顯示功能(6位數碼管構成),以24小時循環為計時基準。 2. 具有調節小時、分鐘的功能。 3.具有整點報時功能,整點報時的同時數碼管顯示閃爍提示。 附加功能: 1. 能顯示日歷。 2. 能顯示星期幾; 3. 鬧鈴。 4. 秒表功能。 5.籃球24秒倒計時。
上傳時間: 2013-12-15
上傳用戶:黑漆漆
一:需求分析 1. 問題描述 魔王總是使用自己的一種非常精練而抽象的語言講話,沒人能聽懂,但他的語言是可逐步解釋成人能聽懂的語言,因為他的語言是由以下兩種形式的規則由人的語言逐步抽象上去的: ----------------------------------------------------------- (1) a---> (B1)(B2)....(Bm) (2)[(op1)(p2)...(pn)]---->[o(pn)][o(p(n-1))].....[o(p1)o] ----------------------------------------------------------- 在這兩種形式中,從左到右均表示解釋.試寫一個魔王語言的解釋系統,把 他的話解釋成人能聽得懂的話. 2. 基本要求: 用下述兩條具體規則和上述規則形式(2)實現.設大寫字母表示魔王語言的詞匯 小寫字母表示人的語言的詞匯 希臘字母表示可以用大寫字母或小寫字母代換的變量.魔王語言可含人的詞匯. (1) B --> tAdA (2) A --> sae 3. 測試數據: B(ehnxgz)B 解釋成 tsaedsaeezegexenehetsaedsae若將小寫字母與漢字建立下表所示的對應關系,則魔王說的話是:"天上一只鵝地上一只鵝鵝追鵝趕鵝下鵝蛋鵝恨鵝天上一只鵝地上一只鵝". | t | d | s | a | e | z | g | x | n | h | | 天 | 地 | 上 | 一只| 鵝 | 追 | 趕 | 下 | 蛋 | 恨 |
上傳時間: 2014-12-02
上傳用戶:jkhjkh1982
Welcome to the Microsoft CRM 3.0 Software Development Kit (SDK). This SDK contains a wealth of resources, including code samples, that are designed to help you build powerful vertical applications using the Microsoft CRM platform. It includes the following sections: 1 Server Programming Guide 2 Client Programming Guide 3 ISV Programming Guide 4 Report Writers Guide 5 Appendix A 6 Glossary –
標簽: Development Microsoft SDK Software
上傳時間: 2014-01-20
上傳用戶:zhichenglu
一款絕對漂亮的窗體界面控件,允許您更換自己的窗體皮膚,目前支持4種風格,5種主題顏色,3種背景色類型,支持菜單運行時添加刪除
標簽: 控件
上傳時間: 2013-12-21
上傳用戶:vodssv
一般情況教師想出一份試卷,要么到龐大的題庫里一道一道的把題找出來,或是從幾本相關的書里把題一道一道挑出來。這樣即費時又費力,而且很難保證試題的覆蓋面和把握好試卷的難度。正是為了能夠幫助教師輕松的出一份高質量的試卷而開發了本軟件。為了達到預期的目標我們最終選擇了Microsoft Office Word做為本軟件的終端輸出。本軟件是在對現有控件的改進和VBA編程的研究的基礎上開發的。本軟件實現了以下主要功能:1.手動生成試卷;2.自動生成試卷;3.抽取現有試卷;4.用戶管理;5.數據庫管理。大量的測試表明本軟件在Windows 98/me/2000/XP平臺配合Office XP/2003 的環境下程序運行穩定且各項功能運行得都很正確,基本達到了預期的要求!
標簽: 試卷
上傳時間: 2015-12-27
上傳用戶:GavinNeko
We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.
標簽: represented integers group items
上傳時間: 2016-01-17
上傳用戶:jeffery
The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).
標簽: converts Toolbox complex logical
上傳時間: 2016-02-12
上傳用戶:a673761058
很好的搜索: 給你很多長度不定的木棒,將他們分成幾組,每組中的總長度作為這組的標示值,請給出一種分組方法,能使得所有標示值中的最小值最大。 Input 多組,每組兩行,第一行是一個N和K,代表有N根木棒,分成K組,第二行是N個數字,代表木棒的長度。(N不超過100,K不超過20,每根木棒長度不超過1000) Output 輸出所有標示值中的最小值的最大值。 Sample Input 5 3 1 3 5 7 9 5 3 89 59 68 35 29 Sample Output 8 89
上傳時間: 2013-12-23
上傳用戶:nairui21
44B0Xbios--BIOS FOR 44B0X 說明: 1) 本項目在ADS1.2下編譯,在SDT2.51的ADW中調試。編譯時,請將整個44b0xbios目錄拷貝到c:\下 2) 現在只對39VF160燒入,對其他FLASH可自改,注意要修改BIOS的駐留地址,現地址為0X1F0000. 3) 對不同的RAM而言,修改SYSINIT.S里的參數.FS44B0Xbios運行地址為0XC7C0000,可在ADS中修改. 4) 波特率為57600 5) ip地址為 192.168.0.1
上傳時間: 2013-12-23
上傳用戶:kernaling
任務:參加運動會有n個學校,學校編號為1……n。比賽分成m個男子項目,和w個女子項目。項目編號為男子1……m,女子m+1……m+w。不同的項目取前五名或前三名積分;取前五名的積分分別為:7、5、3、2、1,前三名的積分分別為:5、3、2;哪些取前五名或前三名由學生自己設定。(m<=20,n<=20) 功能要求:1).可以輸入各個項目的前三名或前五名的成績;
標簽:
上傳時間: 2016-03-21
上傳用戶:athjac