gpt4 book ai didi

C++函数输出

转载 作者:行者123 更新时间:2023-11-30 01:09:19 26 4
gpt4 key购买 nike

我试图在此程序中输出三角形的计算面积,但是当我尝试从函数输出面积时,如果有人能指出我在做什么,我得到的是字母和数字的混合而不是答案错了,将不胜感激。

我已经厌倦了 tArea(area) 但它给出了不同的错误。

最佳答案

您没有调用该函数。当您使用不带括号的 tArea 名称时,C++ 会为您提供函数的地址而不是调用它,并且这将以十六进制格式打印。

此外,您可以使用局部变量而不是使用参数进行工作计算:

#include "stdafx.h"
#include <stdio.h>
#include <iostream>
#include <cmath>
using namespace std;

float tArea(float a, float b, float c);

int main()
{
float a, b, c;

cout << "Enter side 1: ";
cin >> a;
cout << "Enter side 2: ";
cin >> b;
cout << "Enter side 3: ";
cin >> c;

cout << "the area is" << tArea(a, b, c);

return 0;
}

float tArea(float a, float b, float c)
{
float s = (a + b + c) / 2;
float area = sqrt(s*(s - a)*(s - b)*(s - c));
return area;

}

关于C++函数输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40492228/

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