jfz-2023-s464983/TaskE48/description.txt

41 lines
1.8 KiB
Plaintext

PoKeMoN
=======
Napisać program, który wczytuje kolejne wiersze ze standardowego
wejścia i analizuje każdy wiersz (bez znaku końca wiersza). Należy w
jak największym stopniu wykorzystać wyrażenia regularne (np. nie wolno
użyć negacji jako operacji w danym języku programowania, jeśli da się
to wyrazić w samym wyrażeniu regularnym). Tam, gdzie to możliwe należy
użyć pojedynczego wyrażenia regularnego.
Write a program, which loads consecutive lines from standard input
and analyze every line (with no newline character). You should
use regular expressions to the greatest extent possible (e.g. you
can not use negation in the programming language if it is
possible to express the same in regular expression). Wherever possible,
use one regular expression.
Dla każdego napisu należy sprawdzić, czy napis składa się z naprzemian
występujących małych i wielkich liter. Napis może zaczynać się i kończyć
małą bądź wielką literą. Należy uwzględnić polskie znaki. Napis musi
składać się z przynajmniej 2 znaków.
Jeśli napis spełnia tak określony warunek, należy wypisać na
standardowym wyjściu 'yes', w przeciwnym razie — 'no'.
For each string, check if the string is a sequence of alternately
occurring lower and capital case letters. The string may start and end
with a lower or capital case letter. You should consider the polish characters.
The string should consist of at least two letters.
If the string fulfills the condition, you should print 'yes' on the
standard output and 'no' otherwise.
UWAGA! Zadanie przeznaczone dla studentów, których numer indeksu
dzieli się przez 5 z resztą 3.
Attention. The task is for students whose students id remainder of the division by 5 is 3.
POINTS: 2
DEADLINE: 2021-12-04 23:59:59
REMAINDER: 3/5