c++ 如何将小数加到非小数值的浮点数中[已关闭]

zpgglvta  于 2023-01-22  发布在  其他
关注(0)|答案(1)|浏览(116)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。

3天前关闭。
这篇文章是编辑和提交审查2天前。
Improve this question
我有以下程序,我希望输出为10.0
我需要在函数fun中添加哪一行代码才能得到想要的输出。

#include<bits/stdc++.h>
using namespace std;
float fun(float a)
{
    return a;
}
int main()
{
    float a = 10;
    cout << fun(a);
    return 0;
}

我试过使用setprecision(),但是它经常和cout一起使用。当返回输出时,它怎么使用呢?我被困在这里了。

vdzxcuhz

vdzxcuhz1#

没什么能阻止这一切

float fun(float a)
{
    cout << fixed << setprecision(1);
    return a;
}

但那是愚蠢的谜题的愚蠢代码。这和真实的的编程有什么关系?

相关问题