(1)cpp数学库函数
#include <iostream>
using namespace std;
#include <cmath> //数学函数库的头文件
#define pi 3.1415926 //定义一个常量π
int main()
{
cout << "平方数:pow(3, 2) :" << pow(3, 2) << endl;
cout << "开方数:sqrt(9) :" << sqrt(9) << endl;
cout << "整数的绝对值:abs(-10) :" << abs(-10) << endl;
cout << "浮点数的绝对值fabs(-10.6) :" << abs(-10.6) << endl;
cout << "小于或等于参数的最大整数:" << floor(8.9) << endl;//8
cout << "小于或等于参数的最大整数::" << floor(-8.9) << endl;//-9
cout << "ceil:大于或等于参数的最小整数" << ceil(1.1) << endl;//2
cout << "指数函数:log10(100) :" << log10(100) << endl; //2
cout << "正弦函数:sin(30*pi/180) :" << sin(30*pi/180) << endl;
cout << "余弦函数:cos(60*pi/180) :" << cos(60*pi/180) << endl;
cout << "正切函数:tan(45*pi/180) :" << tan(45*pi/180) << endl;
cout << "取一个直角三角形的斜边:hypot(3, 4):" << hypot(3, 4) << endl;
return 0;
}
(2)随机数
随机函数与时间函数搭配使⽤
#include <iostream>
#include <ctime> //获取time函数
#include <cstdlib> //获取随机函数
using namespace std;
int main ()
{
// 设置种子
srand( (unsigned)time( NULL ) );
for(int i = 0; i < 3; i++ )
{
int r = rand(); // 生成实际的随机数
cout << r << "\t";
}
cout << endl;
for(int i = 0; i < 3; i++ )
{
int r = rand()%100+1; // 生成1-100的随机数
cout << r << "\t";
}
cout << endl;
for(int i = 0; i < 3; i++ )
{
int r = rand()%100; // 生成0-99的随机数
cout << r << "\t";
}
return 0;
}
(3)C++中的时间库函数
头文件
#include <ctime>
time函数
time_t time(time_t *seconds);
函数描述:返回基于当前系统的⾃纪元起经过的时间,以秒为单位。
参数/返回值: seconds,存储获取的时间
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
time_t now = time(nullptr);
cout << now << endl; // 1668318334
return 0;
}
ctime函数
char *ctime(const time_t *timer);
参数:time_t类型的指针。
返回值: c字符串,包含可读格式的⽇期时间信息。返回⼀个表示时间的字符串
格式:Www Mmm dd hh:mm:ss yyyy (⽐如 Mon Apr 05 15:23:17 2021)
其中,Www表示星期,Mmm表示⽉份,dd表示天数,hh:mm:ss表示时间,yyyy表示年份。
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
// 创建time_t
time_t now = time(nullptr);
cout << now << endl;
// 1668318334
// ctime函数
char *curr_time = ctime(&now);
cout << curr_time << endl;
// Sun Nov 13 13:51:32 2022
return 0;
}
localtime函数
struct tm *localtime(const time_t *timer);
函数描述:使⽤timer的值来填充tm结构。
参数:time_t类型的指针。
返回值: 返回指向tm结构的指针,本地时间。
示例代码
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
// 创建time_t
time_t now = time(nullptr);
cout << now << endl;
// 1668318334
// localtime函数
tm *curr_tm = localtime(&now);
cout << curr_tm->tm_hour << ":"
<< curr_tm->tm_min << ":"
<< curr_tm->tm_sec << endl;
//14:0:45
return 0;
}
gmtime函数
struct tm *gmtime(const time_t *timer);
函数描述:使⽤timer的值来填充tm结构。
参数:time_t类型的指针。
返回值: 返回指向tm结构的指针,GMT时间。
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
// 创建time_t
time_t now = time(nullptr);
cout << now << endl;
// gmtime函数
tm *curr_tm = gmtime(&now);
cout << curr_tm->tm_hour << ":"
<< curr_tm->tm_min << ":"
<< curr_tm->tm_sec << endl;
// 6:6:1
return 0;
}
asctime函数
char *asctime(const struct tm *timeptr);
函数描述:将tm结构体表示的时间返回为可读的字符串类型。
参数:tm结构体类型的指针。
返回值: c字符串,包含可读格式的⽇期时间信息。
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
// 创建time_t
time_t now = time(nullptr);
cout << now << endl;
// localtime函数
tm *curr_tm = localtime(&now);
// asctime函数
char *curr_time2 = asctime(curr_tm);
cout << curr_time2 << endl;
// Sun Nov 13 14:02:58 2022
return 0;
}
strftime函数
size_t strftime(char *str, size_t maxsize, const char *format, const struct tm *timeptr);
函数描述:根据 format 中定义的格式化规则,格式化结构 timeptr 表示的时间,并把它存储 在 str 中。
参数:
- str:这是指向⽬标数组的指针,⽤来复制产⽣的 C 字符串。
- maxsize:这是被复制到 str 的最⼤字符数。
- format:指定的 C 格式字符串。
- timeptr:tm时间结构体指针
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
time_t now = time(nullptr);
tm *curr_tm = localtime(&now);
char time[80] = {0};
strftime(time, 80, "%Y-%m-%d %H:%M:%S", curr_tm);
cout << time << endl; //2022-11-13 14:09:29
return 0;
}
end