二: 普通計算器的設計說明: 1 普通計算器的主要功能(普通計算與逆波蘭計算): 1.1主要功能: 包括 a普通加減乘除運算及帶括號的運算 b各類三角與反三角運算(可實現角度與弧度的切換) c邏輯運算, d階乘與分解質因數等 e各種復雜物理常數的記憶功能 f對運算過程的中間變量及上一次運算結果的儲存. G 定積分計算器(只要輸入表達式以及上下限就能將積分結果輸出) H 可編程計算器(只要輸入帶變量的表達式后,再輸入相應的變量的值就能得到相應的結果) I 二進制及八進制的計算器 j十六進制轉化為十進制的功能。 *k (附帶各種進制間的轉化器)。 L幫助與階乘等附屬功能
上傳時間: 2013-11-26
上傳用戶:yzy6007
利用RTOS機制實現機械系統中的質量,阻尼等...也可利用鍵盤輸入m,k,c,來改變sin波的位移量
上傳時間: 2014-01-11
上傳用戶:13517191407
軟件名稱:挖雷 游戲版 本:1.01編程語言:Visual Studio .NET C# (Beta 2)調試環境:WINDOWS 2000 Professional運行環境:需要 Microsoft .NET Framework SDK 支持使用方法:具體使用方法請在游戲中按 F1 鍵查看相關的幫助信息。備 注:歡迎各位朋友與我聯系!
標簽: Professional Microsoft WINDOWS Visual
上傳時間: 2015-03-19
上傳用戶:lixinxiang
經典c程序100例==1--10 【程序1】 題目:有1、2、3、4個數字,能組成多少個互不相同且無重復數字的三位數?都是多少? 1.程序分析:可填在百位、十位、個位的數字都是1、2、3、4。組成所有的排列后再去 掉不滿足條件的排列。 2.程序源代碼: main() { int i,j,k printf("\n") for(i=1 i<5 i++) /*以下為三重循環*/ for(j=1 j<5 j++) for (k=1 k<5 k++) { if (i!=k&&i!=j&&j!=k) /*確保i、j、k三位互不相同*/ printf("%d,%d,%d\n",i,j,k) }
上傳時間: 2014-01-07
上傳用戶:lizhizheng88
全面講述了C++BUILDER6開發技術,全書分兩部分,第一部分是windows和數據庫開發,第二部分是高級應用程序和分布式應用開發。作者是Satya Sai Kolachina,曾在很多世界500強大公司擔任軟件架構師。注:本書是英文版
上傳時間: 2015-03-24
上傳用戶:agent
非常快的字符搜索算法。注:上傳時,不知為何當開發語言選為C++BUILDER時,類別不能選擇,故我都選為VC&C++,實際都是C++BUILDER
上傳時間: 2013-12-18
上傳用戶:cccole0605
此為本人期末的課程設計VC設計:瀏覽器程序設計。注:本源碼用Word文檔存放。 簡介內容:隨著互聯網在世界范圍的廣泛應用,WWW(World Wide Web,萬維網)也日益成為互聯網上信息交流不可缺少的工具。它是一種以HTTP(HyperText Tranfer Protocol,超文本傳輸協議)為基礎,使用HTML(HypeText Markup Language,超文本標記語言)編寫的有若干Web網頁構筑而成的世界。 本課程設計要求設計類似于微軟的IE瀏覽器,具備一個瀏覽器的基本功能,可以完成網上沖浪的任務。 設計 Visual C++為我們提供了一個ChtmlView類,有了它。可以很方便地設計瀏覽器。
上傳時間: 2015-03-29
上傳用戶:亞亞娟娟123
本程序是用c++實現的多功能文本編輯器,它除了可以實現一般文本的編輯功能,還增加了保存文檔a(save), 轉為大寫m(large),改為小寫k(small),復制段j(copy),中英文轉換t(language)等功能
上傳時間: 2013-12-23
上傳用戶:wuyuying
Title: STL Tutorial and Reference Guide: C++ Programming with the Standard Template Library (2nd Edition) Author: David R. Musser / Gillmer J. Derge / Atul Saini / Gilmer J. Derge Publisher: Addison-Wesley Page: 560 Edition: 2nd edition (March 27, 2001) Format: PDF Summary: The Standard Template Library was created as the first library of genetic algorithms and data structures, with four ideas in mind: generic programming, abstractness without loss of efficiency, the Von Neumann computation model, and value semantics. This guide provides a tutorial, a description of each element of the library, and sample applications. The expanded second edition includes new code examples and demonstrations of the use of STL in real-world C++ software development it reflects changes made to STL for the final ANSI/ISO C++ language standard.
標簽: Programming Reference Standard Template
上傳時間: 2014-01-19
上傳用戶:netwolf
加密算法 Test Driver for Crypto++, a C++ Class Library of Cryptographic Primitives: - To generate an RSA key cryptest g - To encrypt and decrypt a string using RSA cryptest r - To calculate MD5, SHS, and RIPEMD-160 message digests: cryptest m file - To encrypt and decrypt a string using DES-EDE in CBC mode: cryptest t - To encrypt or decrypt a file cryptest e|d input output - To share a file into shadows: cryptest s <pieces> <pieces-needed> file (make sure file has no extension, if you re running this under DOS) - To reconstruct a file from shadows: cryptest j output file1 file2 [....] - To gzip a file: cryptest z <compression-level> input output - To gunzip a file: cryptest u input output - To run validation tests: cryptest v - To run benchmarks: cryptest b [time for each benchmark in seconds]
標簽: Cryptographic Primitives generate Library
上傳時間: 2015-07-16
上傳用戶:wqxstar