转换天文大量引入在C / C人类可读的形式++(convert astronomically lar

2019-07-20 06:57发布

我的程序打印出巨大的数字 - 像100363443,高达一万亿 - 这有点难以阅读他们,所以我想打印在易于阅读形式的任何数字。

现在我用

printf ("%10ld", number);

格式

我会用printf欣赏得到的号码。 我的大部分代码是C ++但我不想介绍性病::法院,因为我已经printf的

谢谢

Answer 1:

使用非标准的apostrophe在格式化字符串标志,如果你有可用的选项,并且不介意失去便携性的一点点。

根据我的文档中, '标志可用于POSIX自1997年以来系统。

如果你是在Unix,Linux和Mac上,......你应该没有问题
如果您使用的是Windows,DOS,i系列,机器人,... ...所有的赌注都关闭(但也许你可以安装一个POSIX层到您的系统)。

#include <locale.h>
#include <stdio.h>

int main(void) {
  long int x = 130006714000000;

  setlocale(LC_NUMERIC, "en_US.utf-8"); /* important */
  while (x > 0) {
    printf("# %%'22ld: %'22ld\n", x); /* apostrophe flag */
    x *= 2; /* on my machine, the Undefined Behaviour for overflow
            // makes the number become negative with no ill effects */
  }
  return 0;
}

在我的系统这个程序产生:

# %'22ld:    130,006,714,000,000
# %'22ld:    260,013,428,000,000
# %'22ld:    520,026,856,000,000
# %'22ld:  1,040,053,712,000,000
# %'22ld:  2,080,107,424,000,000
# %'22ld:  4,160,214,848,000,000
# %'22ld:  8,320,429,696,000,000
# %'22ld: 16,640,859,392,000,000
# %'22ld: 33,281,718,784,000,000
# %'22ld: 66,563,437,568,000,000
# %'22ld: 133,126,875,136,000,000
# %'22ld: 266,253,750,272,000,000
# %'22ld: 532,507,500,544,000,000
# %'22ld: 1,065,015,001,088,000,000
# %'22ld: 2,130,030,002,176,000,000
# %'22ld: 4,260,060,004,352,000,000
# %'22ld: 8,520,120,008,704,000,000


Answer 2:

你可以使用humanize_number(),它使用后缀如K,M等,留下了低四位。 这是不是一个标准的套路,所以你应该d /升我已经链接到源。 (2-clause BSD许可证,允许任何类型的使用)。

Humanize_number手册页 。

Humanize_number源代码从NetBSD的 。

HUMANIZE_NUMBER(3)      NetBSD Library Functions Manual     HUMANIZE_NUMBER(3)

NAME
     dehumanize_number, humanize_number -- format a number into a human read-
     able form and viceversa

SYNOPSIS
     #include <stdlib.h>

     int
     dehumanize_number(const char *str, int64_t *result);

     int
     humanize_number(char *buf, size_t len, int64_t number,
         const char *suffix, int scale, int flags);

这是通过追加后缀如下:

       Suffix    Description    Multiplier
       k         kilo           1024
       M         mega           1048576
       G         giga           1073741824
       T         tera           1099511627776
       P         peta           1125899906842624
       E         exa            1152921504606846976


Answer 3:

简单的方法可能是要转换为双输出之前,用%E,将打印出来的指数科学记数法。 试试这个:

double n = (double)number;
printf("%10.0e", n);


Answer 4:

std::cout << std::setprecision(5) << std::scientific << 100363443.0;

注意,号码是浮动

编辑:或者,如果你不喜欢科学,我发现这个在网络上:

struct comma : public std::numpunct<char>
{ 
    protected: std::string do_grouping() const { return "\003" ; } 
};

std::cout.imbue( std::locale( std::cout.getloc(), new comma ) );
std::cout << 100363443 << std::endl;

编辑2:正如杰里指出你不需要如上逗号类,这似乎足以本身(虽然有可能不都格式化了大量的语言环境?):

std::cout.imbue( std::locale( "" ) );
std::cout << 100363443 << std::endl;


Answer 5:

记住本地化(especiallyif你正在编写一个库)。
在欧洲(除英国),这将是000000,而超过100万



Answer 6:

下面是我在直C写的W / O使用的语言环境的例子。 仅适用于阳性。 (摘自“DiscoVlad”多大的帮助)

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <strings.h>


void my_reverse ( char* s ) {
    int c, i, j;
    for (i=0, j= strlen(s)-1;i<j;i++,j--) {
        c = s[i];
        s[i] = s[j];
        s[j] = c;
    }
}


char* insert_commas(unsigned long long input ) {
    int i, intlen;
    char* buffer;
    char* formatted;

    intlen = (int) ceil(log10(input * 1.0));
    buffer = (char *) malloc((intlen + 1) * sizeof(char));

    sprintf(buffer, "%llu", input);  // build buffer
    formatted = (char *) malloc((intlen + (int) ceil(intlen/3.0)) * sizeof(char));  // malloc output buffer
    my_reverse(buffer);

    for(i=intlen; i>=0; i--) {
        formatted[strlen(formatted)] = buffer[i];
        if (i%3 == 0 && i<intlen && i > 0) {
            formatted[strlen(formatted)] = ',';
        }
    }
    free(buffer);

    return formatted;
}


int main() {
    char* formatted;

    // don't forget to free(formatted) after each call.
    formatted = insert_commas(123);
    printf("output %s\n", formatted);
    // output 123

    formatted = insert_commas(1234);
    printf("output %s\n", formatted);
    // output 1,234

    formatted = insert_commas(123456);
    printf("output %s\n", formatted);
    // output 123,456

    formatted = insert_commas(1234567);
    printf("output %s\n", formatted);
    // output 1,234,567

    formatted = insert_commas(123456789);
    printf("output %s\n", formatted);
    // output 123,456,789

    formatted = insert_commas(12345678901234567890ull);
    printf("output %s\n", formatted);
    // output 12,345,678,901,234,567,890

}


文章来源: convert astronomically large numbers into human readable form in C/C++