例如abs(x),sqrt(x),rand(x).最好附代码
1 回答
慕勒3428872
TA贡献1848条经验 获得超6个赞
使用函数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
使用函数rand(),需要包含以下文件:
#include <stdlib.h>
用法:
int aaa = rand()%1000;//则aaa就是[0,999]间的随机数
- 1 回答
- 0 关注
- 693 浏览
添加回答
举报
0/150
提交
取消