Parsing C + + floating-point number format display _c language

Source: Internet
Author: User
The code looks like this:
Copy Code code as follows:

#include <stdlib.h>
#include <string>
#include <windows.h>
#include <stdio.h>
#include <iostream>
#include <limits>
#include <sstream>
using namespace Std;

String Do_fraction (long double val, int decplaces=3)
{
Ostringstream out;
Char decimal_point= '. '; European usage for ', '
int Prec=numeric_limits<long double>::d Igits10; 18
Out.precision (PREC)//override default Precision
out<<val;
String str= out.str (); Remove a string from the stream
size_t N=str.find (Decimal_point);
if (N!=string::npos)//Do you have a decimal point?
&& (Str.size () > N+decplaces))//behind at least decplaces bit?
{
str[n+decplaces]= ' n '/overwrite the first extra number
}
Str.swap (String (Str.c_str ()));//Remove extra characters after nul

return str;
}
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.