900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > [Error] invalid operands to binary ^ (have ‘double‘ and ‘float‘)

[Error] invalid operands to binary ^ (have ‘double‘ and ‘float‘)

时间:2022-04-06 14:11:12

相关推荐

[Error] invalid operands to binary ^ (have ‘double‘ and ‘float‘)

C、C++中不能直接使用^

在C、C++中不能使用^来表示指数,只能用*,如果想使用指数,只能建立循环多次相乘或者直接用乘法写出多个,下面是我的代码,注释部分为原来使用的指数形式,会报以上错误。

或者引用数学函数,在前面加上#include<math.h>;

使用pow(x,y)表示求解x的y次方;

#include <stdio.h>#include <stdlib.h>#include <math.h>/* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) {double p0=1000,r1=0.0036,r2=0.0225,r3=0.0198,p1,p2,p3;p1=p0*(1+r1)*(1+r1)*(1+r1)*(1+r1)*(1+r1)*(1+r1);//p1=p0*(1+r1)^6;p2=p0*(1+r2)*(1+r2)*(1+r2);//p2=p0*(1+r2)^3;p3=p0*(1+r3)*(1+r3);//p3=p0*(1+r3)^2;double x=1,y=2,p;p = pow(x+1,y); //求x+1的y次方,即为指数 printf("1+1的平方为%lf",p);printf("存1年期%lf,存2年期%lf,存3年期%lf",p1,p2,p3);return 0;}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。