/*** *****詞法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0
標簽: include lt iostream fstream
上傳時間: 2013-12-27
上傳用戶:baiom
/*** *****詞法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0
標簽: include lt iostream fstream
上傳時間: 2013-12-29
上傳用戶:風之驕子
/*** *****詞法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0
標簽: include lt iostream fstream
上傳時間: 2015-03-25
上傳用戶:xieguodong1234
/*** *****詞法分析程序*** *****/ # include<iostream.h> # include<fstream.h> # include<math.h> int cc=0
標簽: include lt iostream fstream
上傳時間: 2013-12-19
上傳用戶:佳期如夢
C++完美演繹 經典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開C語言的內建函數指令 */ #define PI 3.1415926 /* 宏常量,在稍后章節再詳解 */ #define circle(radius) (PI*radius*radius) /* 宏函數,圓的面積 */ /* 將比較數值大小的函數寫在自編include文件內 */ 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("由小至大排序之后的結果:%d %d %d\n", a, b, c) } 程序執行結果: 由小至大排序之后的結果:1 2 3 可將內建函數的include文件展開在自編的include文件中 圓圈的面積是=201.0619264
標簽: my_Include include define 3.141
上傳時間: 2014-01-17
上傳用戶:epson850
本程序用于測試實時時鐘模塊SD2000系列功能之一:四種中斷功能 程序功能如下: 1.在SD2000試驗板上顯示實時時間的小時和分鐘? 2./int1 到指定時刻時輸出低電平. 3./int2輸出固定頻率32768HZ. 4.測試每分鐘邊沿中斷輸出(int MODE3)和每分鐘固定中斷輸出(int MODE4)功能
上傳時間: 2015-03-31
上傳用戶:lindor
餐飲管理系統數據庫設計文檔 表名:bzqbj(保質期報警表) 字段名 字段類型 字段長度 (0表示不允許NULL,1為允許) id bigint 8 0 id ylid varchar 50 1 原料id ylmc varchar 50 1 原料名稱 diffbzq bigint 8 1 距離保質期的時間 diffbzqyj bigint 8 1 距離保質預警期的時間 bzq bigint 8 1 保質期 表名:cdb(菜單表) id varchar 50 1 mc varchar 50 1 名稱 price float 8 1 價格 lbbh bigint 8 1 類別編號(typelist) dlmc varchar 50 1 大類名稱 tj float 8 1 特價 sftj int 4 1 是否特價 sfjl int 4 0 是否酒類
上傳時間: 2015-04-01
上傳用戶:royzhangsz
/** * 動態數組的模板類 * 1.支持字符索引 * 2.方便的添加刪除修改任意一項 * 最后更新 2004-8-9 yzh **1.優化了字符索引的運作方式,使用數組存儲 **2.重寫了底層數據的存儲,將連續性的存儲方式改為了非連續, *** 從而很好有效地支持了“引用”,并且讓數據的刪除增加變的更為快速 * 用法如: * YCArray<int,int> test * test.Add("Number2",4) * test.Add("Number1",2) * printf("%d %d",test["Number1"],test["Number2"]) * 顯示: * 2 4 ******* ******* History: 2004-11-19 修改了析構函數,解決了索引沒有釋放的bug **/
上傳時間: 2015-04-09
上傳用戶:我干你啊
此程序實現的是一個運算器,是在一個程序的基礎上進行改進的,計算器中需要的運算以及操作對象: IF,AND,OR,<,<=,>,>=,<>,=,== 數字0-9,(,),+,-,*,/, SIN,COS,TAN,POW,EXP,ABS,SQRT,int,LN,LOG,MIN,MAX.
上傳時間: 2015-04-09
上傳用戶:love1314
A C++ framework for creating Linux and Windows communications applications that contain Dialogic/intel NetStructure products. Includes media and network classes (analog, digital, SIP, H323), multithreaded event handling, distributed app support.
標簽: communications applications framework creating
上傳時間: 2014-01-11
上傳用戶:mhp0114