gpt4 book ai didi

c++ - (指向)错误....*叹息*

转载 作者:行者123 更新时间:2023-11-30 02:58:22 24 4
gpt4 key购买 nike

// program assignment 2.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
#include "math.h"

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
double percentconverter;
int playerinput;
int years;
double intrates;
double answer;

cout << " Enter initial amount:" << endl;
cin >> playerinput;

cout << "Enter number of years:" << endl;
cin >> years;

cout << "Enter interest rate (percent per year):" << endl;
cin >> percentconverter;

intrates = percentconverter / 100;
answer = playerinput * (1 + intrates) ^ years;

return 0;
}

在“answer = playerinput * (1 + intrates) ^ years;”行确定我在 playerinput 下面有一条红线,上面写着指向函数的指针……我不明白你会得到那个错误,还有我的任务“编写一个程序来计算你最终会得到多少钱,如果你投资一个以固定利率计算的金额,每年复利。”我有足够的信心,方程式是正确的,当我运行完成的程序时,它会按应有的方式运行,如果我在方程式中错了,请随时离开提要回来。谢谢

最佳答案

小帽子 (^) 不是 C++ 中的求幂,我想你的意思是:

answer = pow( playerinput * (1 + intrates), years );

这将提高“playerinput * (1 + intrates)”的“年”次方。

哦,仅供引用 ^ = XOR,按位。

关于c++ - (指向)错误....*叹息*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13691824/

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