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]间的随机数
打开App,查看更多内容
随时随地看视频慕课网APP