Dodałem zadania 5 i 6

This commit is contained in:
Alexey Pravilov 2024-12-03 21:31:23 +01:00
parent 91b18167f0
commit 1917cee958
11 changed files with 114 additions and 0 deletions

BIN
Zad5/.DS_Store vendored Normal file

Binary file not shown.

BIN
Zad5/BMP.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

BIN
Zad5/GIF.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

BIN
Zad5/JPEG.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 483 KiB

BIN
Zad5/PNG.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 666 KiB

Binary file not shown.

BIN
Zad6/.DS_Store vendored Normal file

Binary file not shown.

9
Zad6/plik_dtd.dtd Normal file
View File

@ -0,0 +1,9 @@
<!ELEMENT wizytowka (nazwa,imie,nazwisko,numer,mail?,adres,adres_pocztowy,nip?)>
<!ELEMENT nazwa (#PCDATA)>
<!ELEMENT imie (#PCDATA)>
<!ELEMENT nazwisko (#PCDATA)>
<!ELEMENT numer (#PCDATA)>
<!ELEMENT mail (#PCDATA)>
<!ELEMENT adres (#PCDATA)>
<!ELEMENT adres_pocztowy (#PCDATA)>
<!ELEMENT nip (#PCDATA)>

View File

@ -0,0 +1,24 @@
<?xml version="1.0"?>
<!DOCTYPE wizytowka [
<!ELEMENT wizytowka (nazwa,imie,nazwisko,numer,mail?,adres,adres_pocztowy,nip?)>
<!ELEMENT nazwa (#PCDATA)>
<!ELEMENT imie (#PCDATA)>
<!ELEMENT nazwisko (#PCDATA)>
<!ELEMENT numer (#PCDATA)>
<!ELEMENT mail (#PCDATA)>
<!ELEMENT adres (#PCDATA)>
<!ELEMENT adres_pocztowy (#PCDATA)>
<!ELEMENT nip (#PCDATA)>
]>
<wizytowka>
<nazwa>Nazwa firmy</nazwa>
<imie>Aleksy</imie>
<nazwisko>Prawiłow</nazwisko>
<numer>+48500264523</numer>
<mail>alepra2@st.amu.edu.pl</mail>
<adres>Piątkowska 80A</adres>
<adres_pocztowy>60-649</adres_pocztowy>
<nip></nip>
</wizytowka>

View File

@ -0,0 +1,14 @@
<?xml version="1.0"?>
<!DOCTYPE wizytowka SYSTEM "plik_dtd.dtd">
<wizytowka>
<nazwa>Nazwa firmy</nazwa>
<imie>Aleksy</imie>
<nazwisko>Prawiłow</nazwisko>
<numer>+48500264523</numer>
<mail>alepra2@st.amu.edu.pl</mail>
<adres>Piątkowska 80A</adres>
<adres_pocztowy>60-649</adres_pocztowy>
<nip></nip>
</wizytowka>

67
Zad6/zadanie3.xml Normal file
View File

@ -0,0 +1,67 @@
<?xml version="1.0"?>
<!DOCTYPE spis_powszechny [
<!ELEMENT spis_powszechny (date+,address+,person+)>
<!ATTLIST spis_powszechny rachmistrz CDATA #REQUIRED>
<!ELEMENT date (year,month,day)>
<!ELEMENT year (#PCDATA)>
<!ELEMENT month (#PCDATA)>
<!ELEMENT day (#PCDATA)>
<!ELEMENT address (street,city,county,country,postalcode)>
<!ELEMENT street (#PCDATA|unit)*>
<!ELEMENT unit (#PCDATA)>
<!ELEMENT city (#PCDATA)>
<!ELEMENT county (#PCDATA)>
<!ELEMENT country (#PCDATA)>
<!ELEMENT postalcode (#PCDATA)>
<!ELEMENT person (name,age,gender)>
<!ATTLIST person employed (fulltime|parttime) #IMPLIED>
<!ATTLIST person id CDATA #REQUIRED>
<!ELEMENT name (first,last,junior?)>
<!ELEMENT first (#PCDATA)>
<!ELEMENT last (#PCDATA)>
<!ELEMENT junior (#PCDATA)>
<!ELEMENT age (#PCDATA)>
<!ELEMENT gender (#PCDATA)>
]>
<spis_powszechny rachmistrz="3163">
<date>
<year>2021</year>
<month>5</month>
<day>11</day>
</date>
<address>
<street> Lane 111<unit>4</unit>
</street>
<city>Big City</city>
<county>Greenwood</county>
<country>Ooo</country>
<postalcode>88-112</postalcode>
</address>
<person employed="fulltime" id="123098665">
<name>
<first>Miron</first>
<last>Baar</last>
<junior />
</name>
<age>39</age>
<gender>male</gender>
</person>
<person employed="parttime" id="020398665">
<name>
<first>Marion</first>
<last>Brug-Baar</last>
</name>
<age>36</age>
<gender>female</gender>
</person>
<person id="986650203">
<name>
<first>Barble</first>
<last>Baar</last>
</name>
<age>11</age>
<gender>male</gender>
</person>
</spis_powszechny>