#include<iostream>
#include<iomanip>
using namespace std;
int main()
{
long long a,b;
int c;
while(cin>>a>>b>>c)
{
cout<<fixed<<setprecision(c)<<double(a)/double(b)<<endl;
}
return 0;
}
#include<iomanip>
using namespace std;
int main()
{
long long a,b;
int c;
while(cin>>a>>b>>c)
{
cout<<fixed<<setprecision(c)<<double(a)/double(b)<<endl;
}
return 0;
}
本文介绍了一个简单的C++程序,该程序演示了如何使用iostream和iomanip库来精确地控制浮点数的输出格式。具体来说,它展示了如何设置浮点数的精度以及如何将长整型数值转换为双精度浮点数进行运算。
341

被折叠的 条评论
为什么被折叠?



