Last active
February 25, 2019 17:46
-
-
Save dnt994/8a155d006f0005d800a779c86d2ca613 to your computer and use it in GitHub Desktop.
esercizio3_10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
group: es3_10 | |
materie = { | |
codice:number, facolta:string, denominazione:string, professore:string | |
1, 'ingegneria', 'ing', 'bertelli' | |
2, 'informatica' 'info', 'tortelli' | |
3, 'ingegneria', 'mat', 'scarpelli' | |
} | |
studenti = { | |
matricola:number, cognome:string, nome:string, facolta:string | |
12, 'sciocc', 'piero', 'informatica' | |
23, 'basit' 'giorgio', 'ingegneria' | |
34, 'trimon', 'marc', 'ingegneria' | |
} | |
professori = { | |
matricola:number, cognome:string, nome:string | |
1, 'bertelli', 'giorgio' | |
2, 'tortelli' ,'tito' | |
3, 'scarpelli', 'carlo' | |
} | |
esami = { | |
studente:number, materia:number, voto:number, data:number | |
12, 1, 30, 11022019 | |
12, 2, 30, 12042019 | |
23, 1, 30, 12052019 | |
23, 3, 30, 11032019 | |
34, 3, 30, 11042019 | |
34, 2, 30, 12112019 | |
} | |
pianostudi = { | |
studente:number, materia:number, anno:number | |
12, 1, 2019 | |
12, 2, 2019 | |
23, 1, 2019 | |
23, 3, 2019 | |
34, 3, 2019 | |
34, 2, 2019 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment