Skip to content

Instantly share code, notes, and snippets.

@Gabrielgtt
Last active November 3, 2017 12:51
Show Gist options
  • Save Gabrielgtt/d820d94fb4538662611b79214be896c3 to your computer and use it in GitHub Desktop.
Save Gabrielgtt/d820d94fb4538662611b79214be896c3 to your computer and use it in GitHub Desktop.
/**
* Loop principal do programa.
* @author Gabriel Alves Tavares
*/
public class Coisa {
/**
* main
*/
public static void main(String[] args) {
Aluno mateus_brito = new Aluno("Mateus Brito");
Aluno amandio = new Aluno("Amândio Ferreira");
mateus_brito.cadastraLaboratorio("LCC2");
amandio.cadastraLaboratorio("Reenge");
mateus_brito.cadastraCantina("RU");
mateus_brito.cadastraDisciplina("LP2");
mateus_brito.defineEmoji(":)");
System.out.println(mateus_brito.geral());
System.out.println(amandio.geral());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment