1

我想在我的程序中添加定点符号,但是当我这样做时,最终输出始终是 0.00

我试着把这个

cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);

在程序的不同部分,但没有任何变化。

这是我的程序:

#include <iostream>
#include <cmath>

using namespace std;

void get_input(double& body1, double& body2, double& distance);
void get_output(double m1, double m2, double d);
double compute_GAF(double m1, double m2, double d); //takes the masses of two bodies and the distance and computes gravitational attractive force between them
const double G = 6.673 * (1/pow(10, 11)); //global constant for Gravity

int main()
{
    double m1, m2, d;
    char ans;

    do
    {

        cout << "Thanks for using the Gravitational Attractive Force Calculator\n";
        cout << endl;

        get_input(m1, m2, d);

        get_output(m1, m2, d);


        cout << "Do you want to calculate again? (Y/N)" << endl;
        cin >> ans;
        cout << endl;

    } while (ans == 'y' || ans == 'Y');

    return 0;
}

void get_input(double& body1, double& body2, double& distance)
{
    using namespace std;

    cout << "Enter the mass of the two objects with a space in between:\n";
    cin >> body1 >> body2;
    cout << "Enter the distance between the objects:\n";
    cin >> distance;
    cout << endl;

    return;
}

void get_output(double m1, double m2, double d)
{
    using namespace std;
    cout.setf(ios::fixed);
    cout.setf(ios::showpoint);
    cout.precision(2);

    cout << "The Gravitational Attractive Force of the two objects is " << compute_GAF(m1, m2, d);

    if (compute_GAF(m1, m2, d) == 1)
        cout << " dyne.\n";
    else
        cout << " dynes.\n";
    cout << endl;
    return;
}

double compute_GAF(double m1, double m2, double d)
{
    double F;

    F = (G*m1*m2) / pow(d, 2);

    return F;
}

对不起我糟糕的英语和糟糕的编程技巧。

4

1 回答 1

1

对于正在计算的数字,您可能将精度设置得太低(即您需要更多小数位)。

cout.precision(20);例如,改为尝试。

此外,您不需要using namespace std;在函数体中使用这些语句。只要在顶部一次就足够了。

于 2013-10-20T21:18:33.337 回答