select mod(10,3)
select 10%3
select floor(2.3)
select ceiling(2.3)
select round(1.6)
select pow(2,3)
select PI()
select rand()
还有其它很多三角函数,使用时可以查询文档
1,在Excel中Power()返回某数的乘幂。2,书写格式:Power(Number,Power)。其中Number表示底数,Power表示幂值。如2的10次方,可以写为:POWER(2,10)#include <iostream>using namespace stddouble power(double x, int n){double val = 1.0while (n--)val *= xreturn val}int main(){double powpow = power(5, 2)cout <<"5 to the power 2 is:" <<pow <<'\n'return 0},3,语法:POWER(<number>, <power>)4,,number可以为任意实数的底数。power对底数进行幂运算的指数。5,返回值:小数。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)