UVaOJ 445 - Marvelous Mazes

AOAPC I: Beginning Algorithm Contests (Rujia Liu) ::Volume 0. Getting Started


Description

给你一段有意义的字符串。

按照他的意思,输出翻译后的图像。


Type

Water


Analysis

读取字符,如果判定为数字就声明一个整型来储存,

读到字母就根据整型的值来输出对应个数的字母。

读到 '!' 和 '\n' 统统换行即可,连case间的空行都不需要编程输出。


Solution

// UVaOJ 445
// Marvelous Mazes
// by A Code Rabbit

#include <cstdio>

char ch;
int num;

int main() {
    num = 0;
    while (scanf("%c", &ch) != EOF) {
        if ('0' <= ch && ch <= '9')
            num += ch - '0';
        else if (ch == '!' || ch == '\n')
            putchar('\n');
        else {
            for (int i = 0; i < num; i++)
                putchar(ch == 'b' ? ' ' : ch);
            num = 0;
        }
    }

    return 0;
}

你可能感兴趣的:(UVaOJ 445 - Marvelous Mazes)