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

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

Micrium-NXP-u<b>cos-ii</b>-LPC

  • ZLG 基于群星Cortex-M3的μCOS-II移植模板的使用 (IAR)

    ZLG 基于群星Cortex-M3的μCOS-II移植模板的使用 (IAR)

    標簽: Cortex-M COS-II ZLG IAR

    上傳時間: 2014-02-12

    上傳用戶:zm7516678

  • 基于群星Cortex-M3 的µ COS-II 移植模板的使用

    基于群星Cortex-M3 的µ COS-II 移植模板的使用

    標簽: Cortex-M COS-II micro 移植

    上傳時間: 2013-12-25

    上傳用戶:cmc_68289287

  • μCOS-II程序設計基礎

    μCOS-II程序設計基礎,方便入門,簡單易懂!!

    標簽: μCOS-II程序設計基礎

    上傳時間: 2015-07-23

    上傳用戶:die0206

  • STM8S移植μCOS-II

    STM8S移植μCOS-II                

    標簽: stm8s

    上傳時間: 2022-07-06

    上傳用戶:

  • Micrium-NXP-uCOS-II-LPC2378-SK.rar

    ucos-ii 在LPC2368上的移植,板級支持包,各種驅動!和大家分享

    標簽: Micrium-NXP-uCOS-II-LPC 2378 SK

    上傳時間: 2013-07-31

    上傳用戶:lh25584

  • 1.有三根桿子A,B,C。A桿上有若干碟子 2.每次移動一塊碟子,小的只能疊在大的上面 3.把所有碟子從A桿全部移到C桿上 經過研究發現

    1.有三根桿子A,B,C。A桿上有若干碟子 2.每次移動一塊碟子,小的只能疊在大的上面 3.把所有碟子從A桿全部移到C桿上 經過研究發現,漢諾塔的破解很簡單,就是按照移動規則向一個方向移動金片: 如3階漢諾塔的移動:A→C,A→B,C→B,A→C,B→A,B→C,A→C 此外,漢諾塔問題也是程序設計中的經典遞歸問題

    標簽: 移動 發現

    上傳時間: 2016-07-25

    上傳用戶:gxrui1991

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

    溫度華氏轉變攝氏 #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

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

    溫度華氏轉變攝氏 #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

    上傳時間: 2013-12-12

    上傳用戶:亞亞娟娟123

  • 給定兩個集合A、B

    給定兩個集合A、B,集合內的任一元素x滿足1 ≤ x ≤ 109,并且每個集合的元素個數不大于105。我們希望求出A、B之間的關系。 任 務?。航o定兩個集合的描述,判斷它們滿足下列關系的哪一種: A是B的一個真子集,輸出“A is a proper subset of B” B是A的一個真子集,輸出“B is a proper subset of A” A和B是同一個集合,輸出“A equals B” A和B的交集為空,輸出“A and B are disjoint” 上述情況都不是,輸出“I m confused!”

    標簽:

    上傳時間: 2017-03-15

    上傳用戶:yulg

  • COS-II調試插件

    μC/OS-II調試插件支持μC/OS-II各種設施的觀察。包含任務、信號量、互斥量、郵箱、消息隊列、標志、定時器和存儲區等。同時可自定義刷新時間,動態的刷新各設施的數據顯示,還可以將任務信息保存到日志文件中

    標簽: COS-II 調試插件

    上傳時間: 2014-12-28

    上傳用戶:shen007yue

主站蜘蛛池模板: 大厂| 深圳市| 和平县| 花莲市| 浑源县| 鄢陵县| 赞皇县| 高阳县| 额尔古纳市| 清苑县| 从江县| 河北省| 西充县| 砚山县| 高唐县| 柯坪县| 马关县| 察哈| 元氏县| 海宁市| 平阳县| 奇台县| 丁青县| 璧山县| 重庆市| 望奎县| 阿图什市| 团风县| 彰化县| 光泽县| 华亭县| 肇源县| 阿荣旗| 祁门县| 济南市| 乳源| 新宁县| 嵩明县| 南溪县| 南江县| 谢通门县|