PAT L1-015. 跟奥巴马一起画方块

PAT L1-015. 跟奥巴马一起画方块


题目链接

列数的50%,所以不能够整除的话,四舍五入取整就是+1

(1)

#include 

int
main() {
    int a, b, i, j;
    char s;

    scanf("%d %c", &a, &s);
    if( a % 2 == 0 ) {  // 偶数
        b = a / 2;
    }
    else {
        b = a / 2 + 1;
    }
    for( i = 0; i < b; i++ ) {
        for( j = 0; j < a; j++ ) {
            printf("%c", s);
        }
        printf("\n");
    }

    return 0;
}

(2)

#include 

int
main() {
    double a;
    int b, i, j;
    char s;

    scanf("%lf %c", &a, &s);
    if( (int)(a / 2) == a / 2 ) {  // 整除
        b = (int)(a / 2);
    }
    else {
        b = (int)(a / 2) + 1;
    }
    for( i = 0; i < b; i++ ) {
        for( j = 0; j < (int)a; j++ ) {
            printf("%c", s);
        }
        printf("\n");
    }

    return 0;
}

你可能感兴趣的:(ACM算法竞赛)