程序员帮忙做放贷网站,WordPress访问mysql慢,衡阳网页定制,怎样制作网页介绍一下Objective-c常用的函数#xff0c;常数变量 算术函数 【算术函数】函数名说明int rand()随机数生成。#xff08;例#xff09;srand(time(nil)); //随机数初期化int val rand()P; //0#xff5e;49之间的随机数int abs(int a)整数的绝对值#xff08;例#… 介绍一下Objective-c常用的函数常数变量 算术函数 【算术函数】函数名说明int rand()随机数生成。例srand(time(nil)); //随机数初期化int val rand()P; //049之间的随机数int abs(int a)整数的绝对值例int val abs(-8); →8※浮点数的时候用fabs。double fabs(double a)浮点数的绝对值例double val fabs(-12.345); →12.345※整数的时候用abs。double floor(double a)返回浮点数整数部分舍弃小数点例double val floor(12.345); →12.000double ceil(double a);返回浮点数整数部分舍弃小数点部分往个位数进1例double val ceil(12.345); →13.000double pow(double a, double b)a的b次方例double val pow(2, 3); →8double sqrt(double a)a的平方根例double val sqrt(2); →1.41421356三角函数 【三角函数】函数名说明double cos(double a)余弦函数 a弧度double sin(double a)正弦函数 a弧度double tan(double a)正切函数 a弧度double asin(double a)反正弦值 a弧度double acos(double a)反余弦函数a弧度double atan(double a)反正切函数double atan2(double a, double b)返回给定的 a 及 b 坐标值的反正切值指数函数 【指数函数】函数名说明double log(double a)以e 为底的对数值double log10(double a)对数函数log常数 常数常数名说明M_PI圆周率πM_PI_2圆周率的/π/2M_PI_4圆周率的/π/4M_1_PI1/πM_2_PI2/πM_EeM_LOG2Elog_2(e)M_LOG10Elog_10(e)转载于:https://www.cnblogs.com/sixindev/p/4651501.html