ultimatepp/autotest/Format2n/Format2n.cpp
2021-09-05 14:58:30 +02:00

13 lines
181 B
C++

#include <Core/Core.h>
using namespace Upp;
CONSOLE_APP_MAIN
{
double x = 1e25;
for(int i = 0; i < 50; i++) {
DDUMP(Format("%2.n", x));
x = x * 0.1;
}
CheckLogEtalon();
}