如何打印边框的另一面?

时间:2015-04-11 00:29:48

标签: c extended-ascii

我有一个c程序,使用扩展的ascii打印出一个基于你输入的两个参数的方框,一个是宽度,另一个是高度。

目前我可以将我的包装盒看起来像:

╔══════════╗
║
║
║
║
║
║
║
║
╚══════════╝

但我无法弄清楚如何做框边框的右侧。我的内容如下:

box_ascii.h

#ifndef __box_ascii_h__
#define __box_ascii_h__

// Might not be exact Extended Ascii Characters but they come from:
// https://en.wikipedia.org/wiki/Box-drawing_character#Unicode

#define BOX_TOP_LEFT_CORNER         "\u2554" // ╔
#define BOX_TOP_RIGHT_CORNER        "\u2557" // ╗
#define BOX_BOTTOM_LEFT_CORNER      "\u255A" // ╚
#define BOX_BOTTOM_RIGHT_CORNER     "\u255D" // ╝
#define BOX_SIDE                    "\u2551" // ║
#define BOX_TOP_BOTTOM              "\u2550" // ═

#endif

create_dynamic_box.c

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

void print_border(int width, int height);
void print_top_border(int row, int col, int width, int height);
void print_left_side_border(int row, int width);
void print_bottom_border(int row, int col, int width, int height);

// Main App.
int main(int argc, char *argv[]) {
    if(argc < 3) {
        printf("Mustenter width and height.\n");
        return -1;
    }

    // Print the actual border.
    print_border(atoi(argv[1]), atoi(argv[2]));

    return 0;
}

// We want to print the actual box border.
void print_border(int width, int height) {
    int row = 0;
    int col = 0;

    print_top_border(row, col, width, height);
    print_left_side_border(row, width);
    print_bottom_border(row, col, width, height);
}

// This is the top part of the border.
void print_top_border(int row, int col, int width, int height) {
    for(row = 0; row < width; row ++) {
        for(col = 0; col < height; col++) {
            if(row == 0 && col == 0) {
                printf("%s", BOX_TOP_LEFT_CORNER);
            }

            if(row == 0 && col < height) {
                printf("%s", BOX_TOP_BOTTOM);
            }

            if(row == 0 && col == height - 1) {
                printf("%s\n", BOX_TOP_RIGHT_CORNER);
            }
        }
    }
}

// Print the left side of the border.
void print_left_side_border(int row, int width) {
    for(row = 0; row < width; row ++) {
        if(row < width -2) {
            printf("%s\n", BOX_SIDE);
        }
    }
}

// This is the bottom part of the border.
void print_bottom_border(int row, int col, int width, int height) {
    for(row = 0; row < width; row ++) {
        for(col = 0; col < height; col++) {
            if(row == width - 1 && col == 0) {
                printf("%s", BOX_BOTTOM_LEFT_CORNER);
            }

            if(row == width - 1 && col < height) {
                printf("%s", BOX_TOP_BOTTOM);
            }

            if(row == width - 1 && col == height - 1) {
                printf("%s\n", BOX_BOTTOM_RIGHT_CORNER);
            }
        }
    }
}

我写了所有内容,但我认为print_right_side_borderprint_left_side_border相同,但我错了。我所做的一切都在底部边框下面有右边边框。

我的目标是最终允许你传入第三个参数,让你说创建顶部,底部,右边但不是左边。因此,为什么我试图将每个边界作为一个功能。

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

我认为你应该同时处理双方(左和右)...... 打印左边框,填充空格,直到到达右边框并打印出来。

如果您需要省略两个边框中的任何一个,只需打印空格而不是您选择的ASCII字符。

我相信你也可以采用相同的方法处理顶部 - 底部边界,但在这种情况下它也可以正常工作