to draw patterns on fabric in the form of symbols. In odd-numbered lines, the symbols are consecutive, and in even-numbered lines, they are separated by a blank.
Incoming data
In a single line of the input file, the pattern symbol S is specified first, then through the omission of 3 natural numbers: the width of the pattern w (odd, w < 80), its height h (h <= 40) and the repeatability t (t <= 40). In the sample output, blanks have been replaced with dots for clarity.
Output data
Display the desired pattern.
Input #1
W 7 9 1
Output #1
WWWWWWW
WWWW
WWWWWWW
WWWW
WWWWWWW
WWWW
WWWWWWW
WWWW
WWWWWWW
Input #2
E 9 6 2
Output #2
EEEEEEEEE
EEEEE
EEEEEEEEE
EEEEE
EEEEEEEEE
EEEEE
EEEEEEEEE
EEEEE
EEEEEEEEE
EEEEE
EEEEEEEEE
the code I wrote: https://dpaste.org/f6tAq
@python waits you
он там уже спрашивал
не особо и летят помогать) оттуда и переслал
Where is sample output with blanks replaced by dots?
Олимпиада предполагает, что ты проверяешь свои знания и умения. И что ты хочешь, чтобы в чате ответели? Что твой код не выполняет условия? Да, твой код не выполняет условия. Как минимум игнорирует число повторов.
Начни с того, что сделай чередующиеся строчки в нужном количестве. Потом добавь к ним пробелы в начале... Так будет попроще, мне кажется. Начни с такого: x x x xxxxx x x x xxxxx
Потом сделай такое: . .. ... .. . .. ... .. . А потом совмести...
Обсуждают сегодня