例如abs(x),sqrt(x),rand(x).最好附代碼
1 回答

慕勒3428872
TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超6個(gè)贊
使用函數(shù)abs(x),sqrt(x),需要包含以下文件:
#include <stdlib.h>
#include <math.h>
例如:
int a = 4,b=-5,c;
c = abs(b);//賦值后c=5
c = sqrt(4);//賦值后,c=2
使用函數(shù)rand(),需要包含以下文件:
#include <stdlib.h>
用法:
int aaa = rand()%1000;//則aaa就是[0,999]間的隨機(jī)數(shù)
- 1 回答
- 0 關(guān)注
- 730 瀏覽
添加回答
舉報(bào)
0/150
提交
取消