gpt4 book ai didi

c - 使用幂函数时的 float 与整数

转载 作者:太空宇宙 更新时间:2023-11-04 05:26:50 26 4
gpt4 key购买 nike

我正在尝试运行它,但似乎无法找出它无法运行的原因。先感谢您。请知道我是新来的。

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

int main(void)
{
float IR;
float invested;
float time;

printf("Please enter the following to be calculated:");
scanf("Interest rate: %f\n", &IR);
scanf("Amount invested: %f\n", &invested);
scanf("Time: %f\n", &time);

float ans;
ans = (invested(((float)1+((IR)^(time)))));

printf("%f", ans);
}

最佳答案

^ 不是幂函数。你需要使用 and = invested * (1 + pow(IR, time));

^ 是按位异或 XOR

关于c - 使用幂函数时的 float 与整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22190604/

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