App下載

詞條

大約有 8,000 項符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,409 項。(搜索耗時:0.0058秒)

5001.log10

原型:extern float log10(float x); 用法:#include <math.h> 功能:計算x的常用對數(shù)。 說明:x的值應(yīng)大于零。 舉例: // log10.c #include <syslib.h> #include <math.h> main() { float x; clrscr(); ...

http://www.o2fo.com/cyykhsscsc/ane1am.html

5002.pow

原型:extern float pow(float x, float y); 用法:#include <math.h> 功能:計算x的y次冪。 說明:x應(yīng)大于零,返回冪指數(shù)的結(jié)果。 舉例: // pow.c #include <syslib.h> #include <math.h> main() { clrs...

http://www.o2fo.com/cyykhsscsc/jkf1an.html

5003.pow10

原型:extern float pow10(float x); 用法:#include <math.h> 功能:計算10的x次冪。 說明:相當(dāng)于pow(10.0,x)。 舉例: // pow10.c #include <syslib.h> #include <math.h> main() { clrscr(); // clear screen ...

http://www.o2fo.com/cyykhsscsc/rln1ao.html

5004.sin

原型:extern float sin(float x); 用法:#include <math.h> 功能:計算x(弧度表示)的正弦值。 說明:x的值域為[-1.0,1.0]。 舉例: // sin.c #include <syslib.h> #include <math.h> main() { float x; ...

http://www.o2fo.com/cyykhsscsc/jxr1ap.html

5005.sinh

原型:extern float sinh(float x); 用法:#include <math.h> 功能:計算x(弧度表示)的雙曲正弦值。 說明:sinh(x)=(e^x-e^(-x))/2。 舉例: // sinh.c #include <syslib.h> #include <math.h> main() { float x; ...

http://www.o2fo.com/cyykhsscsc/nms1aq.html

5006.sqrt

原型:extern float sqrt(float x); 用法:#include <math.h> 功能:計算x的平方根。 說明:x應(yīng)大于等于零。 舉例: // sqrt.c #include <syslib.h> #include <math.h> main() { clrscr(); // clear screen ...

http://www.o2fo.com/cyykhsscsc/qoi1ar.html

5007.tan

原型:extern float tan(float x); 用法:#include <math.h> 功能:計算x(弧度表示)的正切值。 說明:返回x的正切值。 舉例: // tan.c #include <syslib.h> #include <math.h> main() { float x; clrsc...

http://www.o2fo.com/cyykhsscsc/cit1as.html

5008.tanh

原型:extern float tanh(float x); 用法:#include <math.h> 功能:求x的雙曲正切值 說明:tanh(x)=(e^x-e^(-x))/(e^2+e^(-x)) 舉例: // tanh.c #include <syslib.h> #include <math.h> main() { float x; cl...

http://www.o2fo.com/cyykhsscsc/pzm1at.html

5009.kbhit

原型:extern int kbhit(void); 用法:#include <stdio.h> 功能:檢測按鍵 說明:檢測鍵盤是否有鍵按下。 如果有鍵按下,則返回對應(yīng)鍵值;否則返回零。 kbhit不等待鍵盤按鍵。無論有無按鍵都會立即返回。 舉例...

http://www.o2fo.com/cyykhsscsc/sut1au.html

5010.itoa

原型:extern char *itoa(int i); 用法:#include <stdlib.h> 功能:把整數(shù)i轉(zhuǎn)換成字符串 說明:返回指向轉(zhuǎn)換后的字符串的指針 舉例: // itoa.c #include <syslib.h> #include <stdlib.h> main() { int i...

http://www.o2fo.com/cyykhsscsc/rbq1ay.html

抱歉,暫時沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

5001.log10

原型:extern float log10(float x); 用法:#include <math.h> 功能:計算x的常用對數(shù)。 說明:x的值應(yīng)大于零。 舉例: // log10.c #include <syslib.h> #include <math.h> main() { float x; clrscr(); ...

http://www.o2fo.com/cyykhsscsc/ane1am.html

5002.pow

原型:extern float pow(float x, float y); 用法:#include <math.h> 功能:計算x的y次冪。 說明:x應(yīng)大于零,返回冪指數(shù)的結(jié)果。 舉例: // pow.c #include <syslib.h> #include <math.h> main() { clrs...

http://www.o2fo.com/cyykhsscsc/jkf1an.html

5003.pow10

原型:extern float pow10(float x); 用法:#include <math.h> 功能:計算10的x次冪。 說明:相當(dāng)于pow(10.0,x)。 舉例: // pow10.c #include <syslib.h> #include <math.h> main() { clrscr(); // clear screen ...

http://www.o2fo.com/cyykhsscsc/rln1ao.html

5004.sin

原型:extern float sin(float x); 用法:#include <math.h> 功能:計算x(弧度表示)的正弦值。 說明:x的值域為[-1.0,1.0]。 舉例: // sin.c #include <syslib.h> #include <math.h> main() { float x; ...

http://www.o2fo.com/cyykhsscsc/jxr1ap.html

5005.sinh

原型:extern float sinh(float x); 用法:#include <math.h> 功能:計算x(弧度表示)的雙曲正弦值。 說明:sinh(x)=(e^x-e^(-x))/2。 舉例: // sinh.c #include <syslib.h> #include <math.h> main() { float x; ...

http://www.o2fo.com/cyykhsscsc/nms1aq.html

5006.sqrt

原型:extern float sqrt(float x); 用法:#include <math.h> 功能:計算x的平方根。 說明:x應(yīng)大于等于零。 舉例: // sqrt.c #include <syslib.h> #include <math.h> main() { clrscr(); // clear screen ...

http://www.o2fo.com/cyykhsscsc/qoi1ar.html

5007.tan

原型:extern float tan(float x); 用法:#include <math.h> 功能:計算x(弧度表示)的正切值。 說明:返回x的正切值。 舉例: // tan.c #include <syslib.h> #include <math.h> main() { float x; clrsc...

http://www.o2fo.com/cyykhsscsc/cit1as.html

5008.tanh

原型:extern float tanh(float x); 用法:#include <math.h> 功能:求x的雙曲正切值 說明:tanh(x)=(e^x-e^(-x))/(e^2+e^(-x)) 舉例: // tanh.c #include <syslib.h> #include <math.h> main() { float x; cl...

http://www.o2fo.com/cyykhsscsc/pzm1at.html

5009.kbhit

原型:extern int kbhit(void); 用法:#include <stdio.h> 功能:檢測按鍵 說明:檢測鍵盤是否有鍵按下。 如果有鍵按下,則返回對應(yīng)鍵值;否則返回零。 kbhit不等待鍵盤按鍵。無論有無按鍵都會立即返回。 舉例...

http://www.o2fo.com/cyykhsscsc/sut1au.html

5010.itoa

原型:extern char *itoa(int i); 用法:#include <stdlib.h> 功能:把整數(shù)i轉(zhuǎn)換成字符串 說明:返回指向轉(zhuǎn)換后的字符串的指針 舉例: // itoa.c #include <syslib.h> #include <stdlib.h> main() { int i...

http://www.o2fo.com/cyykhsscsc/rbq1ay.html

抱歉,暫時沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程