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

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

遠(yuǎn)程測(cè)控

  • C+Interfaces+and+Implementations

    C+Interfaces+and+Implementations\r\r\n這是C語言接口與實現(xiàn)一書的源碼.-C+ Interfaces+ And+ Implementations This is t

    標簽: Implementations Interfaces and

    上傳時間: 2013-04-24

    上傳用戶:博雅abcd

  • 實戰(zhàn)AVR單片機C語言

    包含全面的mega8的例程及C語言基礎(chǔ)

    標簽: AVR 單片機 C語言

    上傳時間: 2013-10-24

    上傳用戶:561596

  • C++完美演繹 經(jīng)典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開C語言的內(nèi)建函數(shù)指令 */ #define PI 3.141

    C++完美演繹 經(jīng)典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開C語言的內(nèi)建函數(shù)指令 */ #define PI 3.1415926 /* 宏常量,在稍后章節(jié)再詳解 */ #define circle(radius) (PI*radius*radius) /* 宏函數(shù),圓的面積 */ /* 將比較數(shù)值大小的函數(shù)寫在自編include文件內(nèi) */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的結(jié)果:%d %d %d\n", a, b, c) } 程序執(zhí)行結(jié)果: 由小至大排序之后的結(jié)果:1 2 3 可將內(nèi)建函數(shù)的include文件展開在自編的include文件中 圓圈的面積是=201.0619264

    標簽: my_Include include define 3.141

    上傳時間: 2014-01-17

    上傳用戶:epson850

  • 一、RSA基本原理 對明文分組M和密文分組C

    一、RSA基本原理 對明文分組M和密文分組C,加密與解密過程如下: C = POW (M , e) mod n M = POW(C , d) mod n = POW(POW( M ,e), d) mod n=POW( M,e*d) 其中POW是指數(shù)函數(shù),mod是求余數(shù)函數(shù)。 其中收發(fā)雙方均已知n,發(fā)送放已知e,只有接受方已知d,因此公鑰加密算法的公鑰為 KU={ e , n},私鑰為KR={d , n}。該算法要能用做公鑰加密,必須滿足下列條件: 1. 可以找到e ,d和n,使得對所有M<n ,POW(M ,e*d)=M mod n . 2. 對所有 M<n,計算POW (M , e)和POW(C , d)是比較容易的。 3. 由e 和n確定d是不可行的

    標簽: RSA 分組

    上傳時間: 2014-08-04

    上傳用戶:sevenbestfei

  • C8051F32X的usb鼠標例程

    C8051F32X的usb鼠標例程,c語言編寫,包含完整的通信協(xié)議

    標簽: C8051F32X usb 鼠標

    上傳時間: 2015-07-13

    上傳用戶:xhz1993

  • 一個很不錯的控件

    一個很不錯的控件,大家試試,跪求更多好的C#控件,有的M

    標簽: 控件

    上傳時間: 2014-12-03

    上傳用戶:yd19890720

  • A* sudo sudo/* B* adduser script adduser C* rmuser script rmuser E* tout tout/*

    A* sudo sudo/* B* adduser script adduser C* rmuser script rmuser E* tout tout/* F* dumdum dumdum G* lostfile lostfile H* Mkfl.localsys Makefile.localsys I* spacegripe spacegripe J* sendmail.cf sendmail.cf N* remote remote.c O* distributed conrol distrib/* P* hosts and name server makerevhosts Q* xargs xargs/*

    標簽: adduser script rmuser sudo

    上傳時間: 2016-03-29

    上傳用戶:gxrui1991

  • TMS320F2812串口學(xué)習(xí)例程

    TMS320F2812串口學(xué)習(xí)例程,C語言源代碼

    標簽: F2812 2812 320F TMS

    上傳時間: 2016-04-20

    上傳用戶:王楚楚

  • Net+移動開發(fā)例程

    Net+移動開發(fā)例程,C# 開發(fā)手機游戲

    標簽: Net 移動開發(fā)

    上傳時間: 2013-12-31

    上傳用戶:1427796291

  • 溫度華氏轉(zhuǎn)變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void)

    溫度華氏轉(zhuǎn)變攝氏 #include <stdio.h> #include <stdlib.h> enum x {A,B,C,D,E} int main(void) { int a=73,b=85,c=66 { if (a>=90) printf("a=A等級!!\n") else if (a>=80) printf("73分=B等級!!\n") else if (a>=70) printf("73分=C等級!!\n") else if (a>=60) printf("73分=D等級!!\n") else if (a<60) printf("73分=E等級!!\n") } { if (b>=90) printf("b=A等級!!\n") else if (b>=80) printf("85分=B等級!!\n") else if (b>=70) printf("85分=C等級!!\n") else if (b>=60) printf("85分=D等級!!\n") else if (b<60) printf("85分=E等級!!\n") } { if (c>=90) printf("c=A等級!!\n") else if (c>=80) printf("66分=B等級!!\n") else if (c>=70) printf("66分=C等級!!\n") else if (c>=60) printf("66分=D等級!!\n") else if (c<60) printf("66分=E等級!!\n") } system("pause") return 0 }

    標簽: include stdlib stdio gt

    上傳時間: 2014-11-10

    上傳用戶:wpwpwlxwlx

主站蜘蛛池模板: 原阳县| 萨嘎县| 武强县| 临沧市| 湄潭县| 临高县| 沛县| 尚志市| 昌图县| 五大连池市| 遂昌县| 芜湖县| 农安县| 工布江达县| 左权县| 平邑县| 喀什市| 乐陵市| 田阳县| 特克斯县| 景德镇市| 凭祥市| 富顺县| 宁强县| 定日县| 新乡市| 广宁县| 炎陵县| 神池县| 肃南| 措勤县| 黄石市| 随州市| 武邑县| 德江县| 北川| 承德县| 保靖县| 清水县| 关岭| 定西市|