プログラムに固定小数点表記を入れたいのですが、最終的な出力は常に 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;
}
私の下手な英語と下手なプログラミング スキルで申し訳ありません。