中序排序法轉為後續排序法的Visual Basic實做方法
上傳時間: 2016-12-01
上傳用戶:zyt
軟件重構中的代碼量分析,本文檔采用的是C語言中的冒泡排序法進行分析,計算出代碼量
上傳時間: 2016-12-01
上傳用戶:xinyuzhiqiwuwu
編譯器設計 Analysis-Synthesis Model 分析Analysis: 原始程式轉換成階層結構稱為樹(tree),語法樹(syntax tree) 合成Synthesis: 產生目標碼
標簽: Analysis-Synthesis Analysis Model tree
上傳時間: 2016-12-01
上傳用戶:dengzb84
本文旨在設計電梯控制的優化調度模型。 前期準備階段通過對第一課室大樓電梯的運行情況和學生使用電梯的情況進行測 量、調查研究,得到建立模型的相關數據。 問題分析和建立模型階段通過對實際情況作合理假設,將問題歸結為:建立電梯優 化調度模型,使師生的不滿意度達到最小.
上傳時間: 2016-12-04
上傳用戶:lunshaomo
是個能夠做附力葉分解動作相當有用的一套程式碼希望能有所幫助
上傳時間: 2014-01-05
上傳用戶:qiaoyue
基于Atmel ATMega88+ATA682的應用實例 主要功能包括: 1) PWM輸出控制 2) H-Bridge,4 POWER FET 驅動 3) 模擬量比較
標簽: H-Bridge ATMega Atmel POWER
上傳時間: 2013-12-12
上傳用戶:miaochun888
基于陀螺儀原理的慣性導航程序 用于測量量角速度
上傳時間: 2014-11-10
上傳用戶:tuilp1a
溫度華氏轉變攝氏 #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 }
上傳時間: 2014-11-10
上傳用戶:wpwpwlxwlx
溫度華氏轉變攝氏 #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 }
上傳時間: 2013-12-12
上傳用戶:亞亞娟娟123
指定一個數字轉換回十進位,八進位,十六進位#include <stdio.h> #include <stdlib.h> int main(void) { int number =89 printf("數字 %d\n",number) /* %d 為十進位輸出格式*/ printf("八進位為 %o\n",number) /* %o 為八進位輸出格式*/ printf("十六進位為%x\n",number) /* %x 為十六進位輸出格式*/ system("pause") return 0 }
上傳時間: 2013-11-29
上傳用戶:tyler