solution.md 1.7 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1 2 3
# 格子中输出

StringInGrid函数会在一个指定大小的格子中打印指定的字符串。 要求字符串在水平、垂直两个方向上都居中。 如果字符串太长,就截断。 如果不能恰好居中,可以稍稍偏左或者偏上一点。  
每日一练社区's avatar
每日一练社区 已提交
4

每日一练社区's avatar
每日一练社区 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
输出:

![](https://img-blog.csdnimg.cn/20200327144609874.png#pic_center)

以下程序实现了这一功能,请你补全空白处内容:

```cpp
#include <stdio.h>
#include <string.h>
void StringInGrid(int width, int height, const char *s)
{
    int i, k;
    char buf[1000];
    strcpy(buf, s);
    if (strlen(s) > width - 2)
        buf[width - 2] = 0;
    printf("+");
    for (i = 0; i < width - 2; i++)
        printf("-");
    printf("+\n");
    for (k = 1; k < (height - 1) / 2; k++)
    {
        printf("|");
        for (i = 0; i < width - 2; i++)
            printf(" ");
        printf("|\n");
    }
    printf("|");
    printf("%*s%s%*s", __________________;
    printf("|\n");
    for (k = (height - 1) / 2 + 1; k < height - 1; k++)
    {
        printf("|");
        for (i = 0; i < width - 2; i++)
            printf(" ");
        printf("|\n");
    }
    printf("+");
    for (i = 0; i < width - 2; i++)
        printf("-");
    printf("+\n");
}

int main()
{
    StringInGrid(20, 6, "abcd1234");
    return 0;
}
```

## aop

### before

```cpp

```

### after

```cpp

```

## 答案

```cpp
(width - strlen(buf) - 2) / 2, "", buf, (width - strlen(buf) - 2) / 2, ""
```

## 选项

### A

```cpp
(width - strlen(buf) - 1) / 2, "", buf, (width - strlen(buf) - 1) / 2, ""
```

### B

```cpp
(width - strlen(buf) + 1) / 2, "", buf, (width - strlen(buf) + 1) / 2, ""
```

### C

```cpp
(width - strlen(buf) - 2), "", buf, (width - strlen(buf) - 2), ""
```