gpt4 book ai didi

c - 如何修复错误 “invalid operands to binary expression”

转载 作者:行者123 更新时间:2023-11-30 18:55:08 28 4
gpt4 key购买 nike

当我使用此代码查找圆柱体的体积时,我收到错误

“二进制操作数无效 ^ has( 'float' 和 'ínt' ) 有人可以解释一下为什么我会收到此错误。

float r,vol;
printf("Enter the parameters to be calculated:\n");
scanf("%f",&r);
vol = (4*3.14*(r^3))/3;
printf("The Vol of the cylinder is : %f\n",vol);
return 0;

最佳答案

C中你不能使用^作为幂。这不是按位异或的幂。请改用这个-

#include <math.h>
#include<stdio.h>

int main()
{
float r,vol;
printf("Enter the parameters to be calculated:\n");
scanf("%f",&r);
vol = (4*3.14*(pow(r,3)))/3;
printf("The Vol of the cylinder is : %f\n",vol);
return 0;
}

关于c - 如何修复错误 “invalid operands to binary expression”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28634972/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com