用printf用C定制串对准(custom string alignment using print

2019-10-17 10:19发布

我想从给定数组下面的输出

 Apples      200   Grapes      900 Bananas  Out of stock
 Grapefruits 2     Blueberries 100 Orangess Coming soon
 Pears       10000

这里是我想出了到目前为止(感觉就像我矫枉过正),然而,填充柱,当我还是失去了一些东西。 我愿意就如何处理这个任何建议。

#include <stdio.h>
#include <string.h>

#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
char *fruits[][2] = {
    {"Apples", "200"},
    {"Grapes", "900"},
    {"Bananas", "Out of stock"},
    {"Grapefruits", "2"},
    {"Blueberries", "100"},
    {"Oranges", "Coming soon"},
    {"Pears", "10000"},
};

int get_max (int j, int y) {
    int n = ARRAY_SIZE(fruits), width = 0, i;
    for (i = 0; i < n; i++) {
        if (i % j == 0 && strlen(fruits[i][y]) > width) {
            width = strlen(fruits[i][y]);
        }
    }
    return width;
}

int main(void) {
    int n = ARRAY_SIZE(fruits), i, j;
    for (i = 0, j = 1; i < n; i++) {
        if (i > 0 && i % 3 == 0) {
            printf("\n"); j++;
        }
        printf("%-*s ", get_max(j, 0), fruits[i][0]);
        printf("%-*s ", get_max(j, 1), fruits[i][1]);
    }
    printf("\n"); 
    return 0;
}

电流输出:

Apples      200          Grapes      900          Bananas     Out of stock 
Grapefruits 2            Blueberries 100          Oranges     Coming soon  
Pears       10000 

Answer 1:

你是错的计算宽度。 从本质上讲,你要能够计算特定列的宽度。 因此,在你的get_max功能,你应该能够指定列。 然后,我们可以挑选出基于他们率MOD 3是否等于列列表中的元素。 这是可以实现这样:

int get_max (int column, int y) {
    ...
        if (i % 3 == column /* <- change */ && strlen(fruits[i][y]) > width) {
    ...
}

然后在你的主循环,你要根据你目前在什么样的列选择列的宽度可以通过服用率MOD 3这样做:

for (i = 0, j = 1; i < n; i++) {
    ...
    printf("%-*s ", get_max(i % 3 /* change */, 0), fruits[i][0]);
    printf("%-*s ", get_max(i % 3 /* change */, 1), fruits[i][1]);
}

如你期望这应该工作。



Answer 2:

我尝试凭着理解你的逻辑,但我认为你可以使用的空间与标签“\ t”的数据:

printf("%s \t %d","banana", 200);


文章来源: custom string alignment using printf in C
标签: c string printf