1

我们如何显示在 C 中分隔的整数逗号?

例如,如果int i=9876543,结果应该是9,876,543.

4

2 回答 2

3

您可以使用LC_NUMERICsetlocale()构建自己的功能,例如:

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

char *fmt(long x)
{
    char s[64], *p = s, *q, *r;
    int len;

    len = sprintf(p, "%ld", x);
    q = r = malloc(len + (len / 3) + 1);
    if (r == NULL) return NULL;
    if (*p == '-') {
        *q++ = *p++;
        len--;
    }
    switch (len % 3) {
        do {
            *q++ = ',';
            case 0: *q++ = *p++;
            case 2: *q++ = *p++;
            case 1: *q++ = *p++;
        } while (*p);
    }
    *q = '\0';
    return r;
}

int main(void)
{
    char *s = fmt(9876543);

    printf("%s\n", s);
    free(s);
    return 0;
}
于 2013-09-04T09:28:15.730 回答
0

我相信没有内置功能。但是,您可以将整数转换为字符串,然后根据结果字符串的长度计算逗号位置(提示:第一个逗号将在strlen(s)%3数字之后,避免前导逗号)。

于 2013-09-04T09:27:43.400 回答