Posts by Vitor Chaves • 1 point
1 post
-
-2
votes1
answer106
viewsQ: What can be done to improve this code?
class Curso { public List<Disciplina> disciplinas; } class Aluno { public List<Disciplina> obrigatorias; public List<Disciplina> optativas; public matricula(){ ... } } class…