亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

測(cè)試數(shù)據(jù)

  • 二: 普通計算器的設計說明: 1 普通計算器的主要功能(普通計算與逆波蘭計算): 1.1主要功能: 包括 a普通加減乘除運算及帶括號的運算 b各類三角與反三角運算(可實現角度與弧度的切換) c邏輯運算

    二: 普通計算器的設計說明: 1 普通計算器的主要功能(普通計算與逆波蘭計算): 1.1主要功能: 包括 a普通加減乘除運算及帶括號的運算 b各類三角與反三角運算(可實現角度與弧度的切換) c邏輯運算, d階乘與分解質因數等 e各種復雜物理常數的記憶功能 f對運算過程的中間變量及上一次運算結果的儲存. G 定積分計算器(只要輸入表達式以及上下限就能將積分結果輸出) H 可編程計算器(只要輸入帶變量的表達式后,再輸入相應的變量的值就能得到相應的結果) I 二進制及八進制的計算器 j十六進制轉化為十進制的功能。 *k (附帶各種進制間的轉化器)。 L幫助與階乘等附屬功能

    標簽: 運算 1.1 計算器 計算

    上傳時間: 2013-11-26

    上傳用戶:yzy6007

  • 經典c程序100例==1--10 【程序1】 題目:有1、2、3、4個數字

    經典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)    }

    標簽: 100 程序 10 數字

    上傳時間: 2014-01-07

    上傳用戶:lizhizheng88

  • 本程序是用c++實現的多功能文本編輯器

    本程序是用c++實現的多功能文本編輯器,它除了可以實現一般文本的編輯功能,還增加了保存文檔a(save), 轉為大寫m(large),改為小寫k(small),復制段j(copy),中英文轉換t(language)等功能

    標簽: 程序 多功能 文本編輯器

    上傳時間: 2013-12-23

    上傳用戶:wuyuying

  • UNIX下SH的實現源碼

    UNIX下SH的實現源碼,c語言實現,可以方便的將SH移植到其他平臺

    標簽: UNIX 源碼

    上傳時間: 2015-04-23

    上傳用戶:yxgi5

  • c語言編譯器arm-gen.c asmtest.S bcheck.c boundtest.c c67-gen.c Changelog coff.h configure COPYING elf.h

    c語言編譯器arm-gen.c asmtest.S bcheck.c boundtest.c c67-gen.c Changelog coff.h configure COPYING elf.h [examples] float.h gcctestsuite.sh i386-asm.c i386-asm.h i386-gen.c il-gen.c il-opcodes.h libtcc.h libtcc1.c libtcc_test.c Makefile README stab.def stab.h stdarg.h stdbool.h stddef.h tcc-doc.html tcc-doc.texi tcc.1 tcc.c tccasm.c tcccoff.c tccelf.c tcclib.h tccpe.c tcctest.c tcctok.h texi2pod.pl tiny_impdef.c TODO varargs.h VERSION

    標簽: Changelog boundtest configure arm-gen

    上傳時間: 2014-01-16

    上傳用戶:拔絲土豆

  • 第三章列出了Windows CE執行緒在排程時的幾個主要函數

    第三章列出了Windows CE執行緒在排程時的幾個主要函數,在本章中將藉著分析這些函數的流程,來了解執行緒在排程過程中的行為。本章所節選的程式碼全部來自[CEROOT]\PRIVATE\WINCEOS\COREOS\NK\KERNEL目錄下的 schedule.c檔

    標簽: Windows

    上傳時間: 2015-07-01

    上傳用戶:xiaodu1124

  • Title: STL Tutorial and Reference Guide: C++ Programming with the Standard Template Library (2nd Edi

    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

    加密算法 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

  • BISON-C: A one-dimensional transport and burnup calculation code with consideration of actinides and

    BISON-C: A one-dimensional transport and burnup calculation code with consideration of actinides and fission products Auteur(s) / Author(s) CETNAR J. (1) GRONEK P. (1) Affiliation(s) du ou des auteurs / Author(s) Affiliation(s) (1) University of Mining and Metallurgy, Faculty of Physics and Nuclear Techniques, 30 059 Cracow, POLOGNE

    標簽: one-dimensional consideration calculation and

    上傳時間: 2015-07-17

    上傳用戶:royzhangsz

  • BISON-C: A one-dimensional transport and burnup calculation code with consideration of actinides and

    BISON-C: A one-dimensional transport and burnup calculation code with consideration of actinides and fission products Auteur(s) / Author(s) CETNAR J. (1) GRONEK P. (1) Affiliation(s) du ou des auteurs / Author(s) Affiliation(s) (1) University of Mining and Metallurgy, Faculty of Physics and Nuclear Techniques, 30 059 Cracow, POLOGNE

    標簽: one-dimensional consideration calculation and

    上傳時間: 2015-07-17

    上傳用戶:wendy15

主站蜘蛛池模板: 西和县| 郁南县| 阳山县| 资兴市| 青神县| 渭南市| 左云县| 长子县| 老河口市| 太白县| 武平县| 苏尼特左旗| 常熟市| 房山区| 夹江县| 沁阳市| 日照市| 托克逊县| 永登县| 墨脱县| 桦南县| 新建县| 广昌县| 瓦房店市| 鸡东县| 台安县| 庄河市| 宁陵县| 霍州市| 唐海县| 建水县| 云梦县| 亳州市| 五峰| 罗江县| 体育| 乌苏市| 桐梓县| 岗巴县| 响水县| 顺义区|