猿问
C++中怎么用常用库函数
例如abs(x),sqrt(x),rand(x).
最好附代码
MM们
浏览 694
回答 1
1回答
慕勒3428872
使用函数abs(x),sqrt(x),需要包含以下文件:#include <stdlib.h>#include <math.h>例如:int a = 4,b=-5,c;c = abs(b);//赋值后c=5c = sqrt(4);//赋值后,c=2使用函数rand(),需要包含以下文件:#include <stdlib.h>用法:int aaa = rand()%1000;//则aaa就是[0,999]间的随机数
0
0
0
随时随地看视频
慕课网APP
相关分类
C++
typedef入门问题
1 回答
我要回答