This commit is contained in:
Jakub Pokrywka 2021-10-10 19:40:24 +02:00
commit 80f983b481
14 changed files with 77 additions and 0 deletions

32
README.md Normal file
View File

@ -0,0 +1,32 @@
# DJFZ 2021
## Zajęcia 1 11.10.2021
### Informacje na temat przedmiotu
Prowadzący: mgr Jakub Pokrywka
Dyżury: B1-46. Przed przyjściem proszę się umówić na spotkanie, najlepiej jest wysłać mi prywatną wiadomość na MS TEAMS.
- W celu zaliczenia przedmiotu należy zdobyć punkty za zadania na laboratoriach oraz zaliczyć kolowkium.
Punktowane zadania będziemy wykonywać na laboratoriach oraz po nich, ich ilość determinuje ocenę.
Oprócz tego należy zaliczyć kolokwium z wyrażeń regularnych na ostatnich zajęciach. Sam wynik kolokwium
nie będzie wpływał na ocenę, ale bez zdanego kolowkium nie da sie zaliczyć przedmiotu. Punktacja za zadania jest następująca:
- mniej niż 30 punktów - 2
- 30-34- 3
- 35-39- 3.5
- 40-44- 4
- 45-49- 4.5
- więcej niż 49- 5
#### Wysyłanie zadań
Proszę stworzyć prywatne repozytorium na https://git.wmi.amu.edu.pl/ o nazwie djfz-2021-NRINDEKSU oraz dać
prawa do odczytu użytkownikowi kubapok (prowadzący przedmiot). W NRINDEKSU proszę wpisać swój nr indeksu, np. dfjz-2021-s123456.
Następnie w swoim repozytorium proszę spullować niniejsze repozytorium: `git pull git@git.wmi.amu.edu.pl:kubapok/djfz-2021.git`
W ten sposób będziemy aktualizować zadania co zajęcia.
Zadanie TaskX00 jest rozwiązane. Proszę zrobić zadanie TASKX01 lub TASKX02 w zależność od numeru indeksu.

1
TaskX01/complex.exp Normal file
View File

@ -0,0 +1 @@
15

5
TaskX01/complex.in Normal file
View File

@ -0,0 +1,5 @@
1
2
3
4
5

6
TaskX01/description.txt Normal file
View File

@ -0,0 +1,6 @@
Print the sum of integers read from the standard input.
Note: this is just an example of a task (and a solution).
The task has a solution already, do not solve it!
POINTS: 1
DEADLINE: 2021-10-11 23:59:59

7
TaskX01/run.py Normal file
View File

@ -0,0 +1,7 @@
import sys
count = 0
for line in sys.stdin:
count += int(line)
print(count)

1
TaskX01/simple.exp Normal file
View File

@ -0,0 +1 @@
4

2
TaskX01/simple.in Normal file
View File

@ -0,0 +1,2 @@
2
2

5
TaskX02/description.txt Normal file
View File

@ -0,0 +1,5 @@
Print the number lines read from the standard input.
POINTS: 1
DEADLINE: 2020-10-24 23:59:59
REMAINDER 0/2

1
TaskX02/simple.exp Normal file
View File

@ -0,0 +1 @@
3

3
TaskX02/simple.in Normal file
View File

@ -0,0 +1,3 @@
raz
dwa
trzy

6
TaskX03/description.txt Normal file
View File

@ -0,0 +1,6 @@
For each line read from the standard input print the number of characters
(not counting the end-of-line character), a space and the line read.
POINTS: 1
DEADLINE: 2020-10-24 23:59:59
REMAINDER 1/2

4
TaskX03/simple.exp Normal file
View File

@ -0,0 +1,4 @@
9 Szeregowy
4 Rico
8 Kowalski
7 Skipper

4
TaskX03/simple.in Normal file
View File

@ -0,0 +1,4 @@
Szeregowy
Rico
Kowalski
Skipper

0
run_report.py Normal file
View File