您的位置:首页 > 其它

uva445 Marvelous Mazes

2011-11-28 01:03 330 查看



Marvelous Mazes

Your mission, if you decide to accept it, is to create a maze drawing program. A maze will consist of the alphabetic characters A-Z, * (asterisk), and spaces.

Input and Output

Your program will get the information for the mazes from the input file. This file will contain lines of characters which your program must interpret to draw a maze. Each row of the maze will be described by a series
of numbers and characters, where the numbers before a character tell how many times that character will be used. If there are multiple digits in a number before a character, then the number of times to repeat the character is the sum of the digits before that
character.
The lowercase letter "b" will be used in the input file to represent spaces in the maze. The descriptions for different rows in the maze will be separated by an exclamation point (!) or by an end
of line.

Descriptions for different mazes will be separated by a blank line in both input and output. The input file will be terminated by an end of file.
There is no limit to the number of rows in a maze or the number of mazes in a file, though no row will contain more than 132 characters.
Happy mazing!



起初 看到每行不超过132字符 第一印象用数据 其实大可不必 直接处理即可

应用了 cytype.h 文件的几个字符类型判断函数 进行字符统计。

#include <stdio.h>
#include <ctype.h>

int main()
{
int i, sum = 0;
char c;
while ((c = getchar()) != EOF)
{
if (isdigit(c))
sum +=  c - '0';
else if (isupper(c) || c == '*')
{
for (i = 0; i < sum; i++)
printf("%c", c);
sum = 0;
}
else if (c == 'b')
{
for (i = 0; i < sum; i++)
printf(" ");
sum = 0;
}
else
printf("\n");
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: