VB編寫的銷售合同管理系統,完整的程序設計說明書 第1章 緒 論 1.1 項目背景 1.2實行銷售合同管理的企業的業務特點 1.3 計算機管理銷售合同的必要性 1.4 銷售合同管理工作分析 第2章 可行性研究 2.1 管理可行性 2.2 技術可行性 第3章Visual Basic 6.0編程環境簡介及數據庫編程 3.1 VB編程環境簡介 3.2 VB數據庫編程 第4章 銷售合同管理系統需求分析說明 4.1 引言 4.1.1 編寫目的 4.1.2 參考資料 4.2 任務概述 4.2.1 開發目標 4.2.2 運行環境 4.2.3 條件與限制 4.3 功能需求 4.3.1 功能劃分 4.3.2 功能描述 4.3.3 詳細功能需求 4.4 性能需求 4.4.1 數據精確度 4.4.2 時間特性 4.4.3 適應性 4.5 運行需求
上傳時間: 2014-01-16
上傳用戶:123啊
銀行代收電話費管理系統1.0功能敘述 使用文件管理整個收費信息,內容有:客戶姓名C16,電話號碼N11,市話費F7.2,長途費F7.2,信息費F7.2,ADSL費F7.2,費用合計F8.2,對應年月N6,收費狀態C(0――未收,1――已收),收費日期D,銀行帳號N20,收費人編姓名.
上傳時間: 2015-11-11
上傳用戶:wsf950131
HHARM2410: 1. 從ftp://ftp.arm.linux.org.uk上下載linux內核,由于項目原因,先后跑了2.6.11,2.6.13和2.6.15,試了一下ftp.kernel.org上下載的2.6.16,沒跑起來,打住。 2. 編輯linux-2.6.15/Makefile, ARCH ?= $(SUBARCH) CROSS_COMPILE?= 改為 ARCH ?= arm CROSS_COMPILE?= arm-unknown-linux-gnu- 我用的編譯器是4.0.1版本的,一般的3.x的應該都沒問題
上傳時間: 2014-09-03
上傳用戶:lo25643
本文主要講了C語言編寫魔王語言解釋系統,把魔王抽象的語言通過進隊出隊按照規則α 轉換為 β1β2…βm 和θδ1δ2…δn 轉換為 θδnθδn-1… θδ1θ 進行解釋,最后解釋譯成我們能夠看懂得語言。同時也講述了在編寫調試程序中一些需注意的問題,如調試程序的步驟。通過隊的應用(出隊入隊)以及其他相關知識完成了這次課程設計。
上傳時間: 2015-11-26
上傳用戶:weiwolkt
匯編常用的小程序,包括2轉10,2轉ASCII等等,里面注釋比較詳細,請大家自己看,歡迎提出意見。
上傳時間: 2016-01-02
上傳用戶:caiiicc
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
操作系統原理教程電子教案ppt,第1章 操作系統概述2.ppt,第2章 處理器管理.ppt,第3章 存儲器管理.ppt,第4章 文件管理.ppt,第5章 設備管理.ppt,第6章 作業管理與系統接口.ppt
上傳時間: 2016-01-24
上傳用戶:thuyenvinh
三星照相模塊驅動。linux/char下,linux 2.6與linux 2.4下都使用
上傳時間: 2016-02-04
上傳用戶:youmo81
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
掃雷程序還會自動展開已確定沒有雷的雷區。如果a[3][4]周圍雷數為1,a[2][3]已被標示為地雷,那么a[2][4],a[2][5],a[3][3],a[3][5],a[4][3],a[4][4],a[4][5]將被展開,一直波及到不可確定的雷區。這也是實現的關鍵。我們可以把數組的元素設定為一個類對象,它們所屬的類設定這樣的一個事件:在被展開時,檢查周圍的雷數是否與周圍標示出來的雷數相等,如果相等則展開周圍未標示的雷區。這樣新的雷區展開又觸發這個事件,就這樣遞歸下去,一直蔓延到不可展開的雷區。相信在了解以上兩個要點后,把雷區這個類編寫完全(如添加是否有雷標記,是否展開標記,周圍雷數等,雙擊,左右單擊的鼠標事件等),實現掃雷程序應是十分簡單的一件事。
上傳時間: 2016-02-13
上傳用戶:GHF