本文主要是介绍c++ float截取位数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include <iostream>
#include <sstream>
#include <iomanip>
using namespace std;
//fValue:需要截取的数据
//bits:位数
float CVedioPlayControl::Round(float fValue, int bits)
{
stringstream sStream;
sStream << fixed << setprecision(bits) << fValue;
sStream >> fValue;
return fValue;
}
这篇关于c++ float截取位数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!