commit e36d29391c3b0af07c71275fbb548c3fbc582dad Author: Tomasz Dzierzbicki Date: Mon Jan 21 16:08:30 2019 +0100 wersja 1 diff --git a/cw10/Cw10.docx b/cw10/Cw10.docx new file mode 100644 index 0000000..2ec202d Binary files /dev/null and b/cw10/Cw10.docx differ diff --git a/cw11/Zadanie 1.docx b/cw11/Zadanie 1.docx new file mode 100644 index 0000000..fd6e88f Binary files /dev/null and b/cw11/Zadanie 1.docx differ diff --git a/cw11/Zadanie 2.xlsx b/cw11/Zadanie 2.xlsx new file mode 100644 index 0000000..fd61c04 Binary files /dev/null and b/cw11/Zadanie 2.xlsx differ diff --git a/cw12/Cw12.zip b/cw12/Cw12.zip new file mode 100644 index 0000000..6941766 Binary files /dev/null and b/cw12/Cw12.zip differ diff --git a/cw3/cwiczenia03.docx b/cw3/cwiczenia03.docx new file mode 100644 index 0000000..8a21b88 Binary files /dev/null and b/cw3/cwiczenia03.docx differ diff --git a/cw4/Informacje do plików.txt b/cw4/Informacje do plików.txt new file mode 100644 index 0000000..10e3048 --- /dev/null +++ b/cw4/Informacje do plików.txt @@ -0,0 +1,11 @@ +Zadanie 1: +Skompresowany plik (Text 100000 znaków max) algorytmem ZIP ma najlepszy stopień kompresji (10,6). +Zadanie 2: +Skompresowany plik (Text 100000 znaków min) algorytmem ZIP ma najszybszą kompresję (10,1). +Zadanie 3: +Skompresowany plik JPEG (kot_max) ma największy stopień kompresji (216,5) kosztem jakości. +Zadanie 4: +Skompresowany plik JPEG (kot_min) ma najmniejszy stopień kompresji (24,8) co osiąga wysoką jakość i mniej zajmujący miejsca plik. + +PS: do zadań 1 i 2 użyto program WINRAR z algorytmem ZIP. +PPS: do zadań 3 i 4 został użyty plik załączony do ćwiczeń (kot.bmp) ze względu na rozmiar nie załączam pliku do rozwiązań \ No newline at end of file diff --git a/cw4/Pliki.zip b/cw4/Pliki.zip new file mode 100644 index 0000000..8e898d6 Binary files /dev/null and b/cw4/Pliki.zip differ diff --git a/cw5/sklep.xml b/cw5/sklep.xml new file mode 100644 index 0000000..7928e47 --- /dev/null +++ b/cw5/sklep.xml @@ -0,0 +1,104 @@ + + + + + + + + + +]> + + + + + banan + 3.99 + + + gruszka + 2.99 + + + jablko + 1.29 + + + + + pomidor + 0.99 + + + ziemniak + 0.69 + + + ogorek + 2.29 + + + + + + + zeszyt 30 stron + 1.49 + + + zeszyt 60 stron + 2.99 + + + zeszyt 30 stron twarda okladka + 4.99 + + + + + linijka + 2.99 + + + olowek + 0.99 + + + dlugopis + 1.29 + + + + + + + bluza + 59.99 + + + koszulka + 24.99 + + + buty + 65.99 + + + + + sukienka + 49.99 + + + koszulka + 23.99 + + + buty + 39.99 + + + + \ No newline at end of file diff --git a/cw6/cw6.txt b/cw6/cw6.txt new file mode 100644 index 0000000..d67e76b --- /dev/null +++ b/cw6/cw6.txt @@ -0,0 +1,62 @@ +Zadanie 1: +a) +f(x,y) = (!x U !y) ^ !(y U !x) + x | y | !x U !y | y U !x | f +---|---|---------|--------|--- + 0 | 0 | 1 | 1 | 0 + 0 | 1 | 1 | 1 | 0 + 1 | 0 | 1 | 0 | 1 + 1 | 1 | 0 | 1 | 0 +układ(zał. obr1.png) + +b) +f(x,y,z) = !z U (x ^ y ^ !z) + x | y | z | x ^ y ^ !z | f +---|---|---|------------|--- + 0 | 0 | 0 | 0 | 1 + 0 | 0 | 1 | 0 | 0 + 0 | 1 | 0 | 0 | 1 + 0 | 1 | 1 | 0 | 0 + 1 | 0 | 0 | 0 | 1 + 1 | 0 | 1 | 0 | 0 + 1 | 1 | 0 | 1 | 1 + 1 | 1 | 1 | 0 | 0 +układ(zał. obr2.png) + +c) +f(x) = !x ^ x + x | f +---|--- + 0 | 0 + 1 | 0 +układ(zał. obr3.png) + +d) +f(x,y,z) = x U y U (!x ^ !z) + x | y | z | !x ^ !z | f +---|---|---|---------|--- + 0 | 0 | 0 | 1 | 1 + 0 | 0 | 1 | 0 | 0 + 0 | 1 | 0 | 1 | 1 + 0 | 1 | 1 | 0 | 1 + 1 | 0 | 0 | 0 | 1 + 1 | 0 | 1 | 0 | 1 + 1 | 1 | 0 | 0 | 1 + 1 | 1 | 1 | 0 | 1 +układ(zał. obr4.png) + +Zadanie 2: +(zał. obr5.png) + +Zadanie 3: +f(a,b,c) = !(a ^ b ^ c) ^ (!a U !b U c) ^ (a ^ !c) ^ (a U !b U c) + a | b | c | a ^ b ^ c | !a U !b U c) | a ^ !c | a U !b U c | f +---|---|---|-----------|--------------|--------|------------|--- + 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 + 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 + 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 + 0 | 1 | 1 | 0 | 1 | 0 | 1 | 0 + 1 | 0 | 0 | 0 | 1 | 1 | 1 | 1 + 1 | 0 | 1 | 0 | 1 | 0 | 1 | 0 + 1 | 1 | 0 | 0 | 0 | 1 | 1 | 0 + 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 \ No newline at end of file diff --git a/cw6/obr1.png b/cw6/obr1.png new file mode 100644 index 0000000..ae68ea9 Binary files /dev/null and b/cw6/obr1.png differ diff --git a/cw6/obr2.png b/cw6/obr2.png new file mode 100644 index 0000000..b09583d Binary files /dev/null and b/cw6/obr2.png differ diff --git a/cw6/obr3.png b/cw6/obr3.png new file mode 100644 index 0000000..7e49c37 Binary files /dev/null and b/cw6/obr3.png differ diff --git a/cw6/obr4.png b/cw6/obr4.png new file mode 100644 index 0000000..13fa088 Binary files /dev/null and b/cw6/obr4.png differ diff --git a/cw6/obr5.png b/cw6/obr5.png new file mode 100644 index 0000000..55da8a0 Binary files /dev/null and b/cw6/obr5.png differ diff --git a/cw7/cw7.docx b/cw7/cw7.docx new file mode 100644 index 0000000..a34be6e Binary files /dev/null and b/cw7/cw7.docx differ diff --git a/cw8/cw 8.docx b/cw8/cw 8.docx new file mode 100644 index 0000000..acb7607 Binary files /dev/null and b/cw8/cw 8.docx differ diff --git a/cw9/cw9.docx b/cw9/cw9.docx new file mode 100644 index 0000000..71a8ab2 Binary files /dev/null and b/cw9/cw9.docx differ