簡單最短尋道跟電梯算法,用C++編譯 #include "Stdio.h" #include "stdlib.h" #include <iostream.h>
上傳時間: 2016-08-23
上傳用戶:cc1015285075
函數分庫函數和用戶自定義函數兩類: 庫函數(又稱系統函數)是高級語言軟家中提供基礎功能的函數。庫函數文件以h為文件后綴,如C語言的Stdio.h文件包括了printf(), scanf (),open(),close()。C語言中主函數要使用某庫函數:#include<庫函數文件名>
上傳時間: 2014-01-04
上傳用戶:sy_jiadeyi
#include<stdlib.h> #include "dos.h" #include "graphics.h" #include "math.h" #define PI 3.1415926 #define NULL 0 #include<Stdio.h> #include<string.h>
標簽: include graphics define stdlib
上傳時間: 2013-12-29
上傳用戶:王者A
這個是我調通的在2410下運行文件系統的程序. 用2410驅動sd卡來實現fat文件系統. 歡迎大家來測試. 用法很簡單, 如下 FILE *fp // 文件指針 unsigned char temp[24]="3.wav" // 文件明需要放在數組里 while(!initialize_media()) // 初始化sd卡 { Uart_Printf("sd initializing....\n") } Uart_Printf("sd ready\n") fp=fopen(temp, READ) // 打開文件就可以用了, 函數和標準c中的一樣,所以不能加載Stdio.h if(!fp) { Uart_Printf("open file wrong\n") while(1) } Uart_Printf("open file successed\n")
上傳時間: 2013-12-30
上傳用戶:xlcky
一個在線考試系統,時使用visual Stdio做的
標簽:
上傳時間: 2013-12-11
上傳用戶:hjshhyy
encode/decode gsm sms 7bit pdu format text. orginally written for palm os, but it don t make any special system call. plain Stdio is ok
標簽: orginally written encode decode
上傳時間: 2014-01-25
上傳用戶:偷心的海盜
一款轉換seg數據的軟件,可以由visual Stdio編譯!
上傳時間: 2013-12-19
上傳用戶:671145514
BP神經網絡程序,C語言源代碼 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "math.h" #include "Stdio.h" #include "time.h" #include "fstream.h" #define N 120 //學習樣本個數 #define IN 3 //輸入層神經元數目 #define HN 2 //隱層神經元數目 #define ON 2 //輸出層神經元數目 #define Z 20000 //舊權值保存-》每次study的權值都保存下來 double P[IN] //單個樣本輸入數據 double T[ON] //單個樣本教師數據 double U11[IN][HN] //輸入層至第一隱層權值 double V[HN][ON] //隱層至輸出層權值 double X1[HN] //第一隱層的輸入 double Y[ON] //輸出層的輸入 double H1[HN] //第一隱層的輸出 double O[ON] //輸出層的輸出 double YU_HN1[HN] //第一隱層的閾值 double YU_ON[ON] //輸出層的閾值 double err_m[N] //第m個樣本的總誤差 double a //學習效率 double alpha //動量因子
標簽: include iostream iomanip stdlib
上傳時間: 2017-06-15
上傳用戶:xinzhch
#include <avr/io.h> #include <avr/interrupt.h> #include <avr/signal.h> #include <avr/sleep.h> #include <avr/pgmspace.h> #include <string.h> #include <util/delay.h> #include <avr/eeprom.h> #include <Stdio.h> #include "defines.h"
上傳時間: 2017-07-31
上傳用戶:diets
* TFTP client compatible with RFC-1350 * compile under visiual c++ or borland c++ * author email: yuyushine@163.com ***************************************************/ #define _VC /* if compile under visiual c++ else undefine this*/ #include <Stdio.h> #include <winsock.h> #include <conio.h> #ifndef MAKEWORD #define MAKEWORD(l,h) ((WORD)(((BYTE)(l))|(((WORD)(BYTE)(h))<<8))) #endif #define WSA_MAJOR_VERSION 1 #define WSA_MINOR_VERSION 1 #define WSA_VERSION MAKEWORD(WSA_MAJOR_VERSION, WSA_MINOR_VERSION)
標簽: compatible borland compile visiual
上傳時間: 2014-01-15
上傳用戶:yuchunhai1990