如果结果为整数,则不输出小数点。
如果结果是浮点数,则不要输出任何尾随零。
如何在c
or中进行操作c++
:
double result;
/*some operations on result */
printf("%g", result);
上述方法是否正确?在我的情况下,我没有得到正确的答案。
您可以使用snprintf
将 double 值打印到 char 数组中,然后从末尾到头部,将 '0' 替换为 '\0',最后得到一个没有尾零的数字。这是我的简单代码。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void
remove_zeroes(double number, char * result, int buf_len)
{
char * pos;
int len;
snprintf(result, buf_len, "%lf", number);
len = strlen(result);
pos = result + len - 1;
#if 0
/* according to Jon Cage suggestion, removing this part */
while(*div != '.')
div++;
#endif
while(*pos == '0')
*pos-- = '\0';
if(*pos == '.')
*pos = '\0';
}
int
main(void)
{
double a;
char test[81];
a = 10.1;
printf("before it is %lf\n", a);
remove_zeroes(a, test, 81);
printf("after it is %s\n", test);
a = 100;
printf("before it is %lf\n", a);
remove_zeroes(a, test, 81);
printf("after it is %s\n", test);
return 0;
}
输出是
before it is 10.100000
after it is 10.1
before it is 100.000000
after it is 100
我更喜欢可读的代码,这将起作用并且易于理解。不过它需要提升。
#include <boost/algorithm/string.hpp>
std::string value = std::to_string((double)12); //yields 12.000000
boost::trim_right_if(value, boost::is_any_of("0")); //turn 12.000000 -> 12.
boost::trim_right_if(value, boost::is_any_of(".")); //turn 12. -> 12
请注意,下面的代码适用于 12,不适用于 120 或 0。您必须将其修剪两步,以免删除小数点左侧的零。所以不要试图保存一行!
std::string value = std::to_string((double)120);
boost::trim_right_if(value, boost::is_any_of("0.")); //yields 12 not 120
在评论中向我指出,6 位精度可能不够。然后试试这个:
#include <iostream>
#include <sstream>
#include <iomanip>
#include <boost/algorithm/string.hpp>
std::stringstream sStream;
sStream << std::fixed << std::setprecision( 16 ) << (double)12; //yields 12.0000000000000000
std::string value = sStream.str();
boost::trim_right_if(value, boost::is_any_of("0")); //turn 12.000000000000000 -> 12.
boost::trim_right_if(value, boost::is_any_of(".")); //turn 12. -> 12
如果您知道结果是整数,则可以使用整数变量或简单地转换为整数:
double result;
/*some operations on result */
printf("%d", (int)result);
[编辑]尝试这样的事情:
#include <stdio.h>
#include <math.h>
void VariablePrecisionPrinter( double num, double precision )
{
if( fabs(num-int(num)) < precision )
{
printf("%d\n", (int) num);
}
else
{
printf("%g\n", num);
}
}
void Test( )
{
const double Precision = 0.001;
VariablePrecisionPrinter( 100.001, Precision );
VariablePrecisionPrinter( 100.00001, Precision );
VariablePrecisionPrinter( 0.00001, Precision );
VariablePrecisionPrinter( 0.0, Precision );
VariablePrecisionPrinter( 0.1, Precision );
}
...这将打印:
100.001
100
0
0
0.1
[编辑2]
这有点笨拙,但它可以满足您的要求:
#include <string>
#include <stdio.h>
#include <math.h>
using namespace std;
void VariablePrecisionPrinter( double num )
{
// Convert the number to a string
const int tmpSize = 128;
char tmp[tmpSize] = {'\0'};
sprintf(tmp, "%lf", num);
string truncatedNum = tmp;
// If the conversion ends with a 0, strip the extra parts.
size_t p2 = truncatedNum.find_last_not_of( '0' );
if( string::npos != p2 )
{
truncatedNum = truncatedNum.substr( 0, p2+1 );
// Make sure we're not left with just a decimal point at the end
size_t decimalPos = truncatedNum.find_last_of('.');
if( decimalPos == truncatedNum.length()-1 )
{
truncatedNum = truncatedNum.substr( 0, truncatedNum.length()-1 );
}
}
printf( "%s\n", truncatedNum.c_str() );
}
void Test( )
{
const double Precision = 0.001;
VariablePrecisionPrinter( 100.001 );
VariablePrecisionPrinter( 100.00001 );
VariablePrecisionPrinter( 0.00001 );
VariablePrecisionPrinter( 0.0 );
VariablePrecisionPrinter( 0.1 );
}
因为编译器result
始终是双精度的,因为它是这样声明的。在内部,它具有与整数不同的内存布局。
要正确执行您想要实现的操作,请检查是否result
足够接近自然数,并在打印前将其转换为适当的整数。
string DoubleToString (double inValue)
{
std::stringstream buildString;
int i = 0;
double valueWithPrecision = 0;
do
{
buildString.str(std::string());
buildString.clear();
buildString << std::fixed << std::setprecision(i) << inValue;
valueWithPrecision = std::stod(buildString.str().c_str());
i++;
} while (valueWithPrecision != inValue);
return buildString.str();
}
现在你应该只为操纵器插入一行:
cout << noshowpoint;
cout << 12.000000000000000 << endl;
或者,如果它甚至不是默认值,则在您的输出(作为 oneliner)之前插入此操作。
如果您喜欢相反的方式,那么showpoint
就是您的朋友。