C++ 在控件上使用科学记数法输出数据

方法:

str.Format(_T("%.3g"),dNumber);

代码实现: 

	//保护层厚度、直径、宽度、高度
	str.Format(_T("%.3g"),data.GetCovering());
	m_EditCovering.SetWindowText(str);
	str.Format(_T("%.3g"),data.GetDiameter());
	m_EditDiameter.SetWindowText(str);
	str.Format(_T("%.3g"),data.GetHeight());
	m_EditHeight.SetWindowText(str);
	str.Format(_T("%.3g"),data.GetWidth());
	m_EditWidth.SetWindowText(str);

效果:

C++ 在控件上使用科学记数法输出数据_第1张图片

你可能感兴趣的:(C++)