/*
* 函数功能:将数值小数点后面多余的零清空。
* 参数描述:
* [in] aSource - 输入的源数值;
* [out] aDestination - 输出截取后的数值
* [in] iSize - 输入源数值长度
*/
void cutOutZero(const char aSource[], char aDestination[], int iSize)
{
int iLength =0;
for(int i = iSize -1; i >=0; i--)
{
if(aSource[i] == '0')
{
continue;
}
else
{
if(aSource[i] == '.')
{
iLength = i ;
}
else
{
iLength = i + 1;
}
break;
}
}
strncpy(aDestination, aSource, iLength);
}
chars[]={};
sprintf(s,"%4f",dFirst);//dFirst为double型数据类型
//m_qsInputOne=QString::fromUtf8(s);
//***********************************转换数据****************
intlength=;
for(inti=strlen(s)-;i>=;i--)
{
if(s[i]=='0')
{
continue;
}
else
{
if(s[i]=='.')
{
length=i;
}
else
{
length=i+;
}
break;
}
}
charresult[]={};
strncpy(result,s,length);