Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Last active June 8, 2022 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save httpmurilo/94cf6a4a1b28c6091ca892ed098e0306 to your computer and use it in GitHub Desktop.
Save httpmurilo/94cf6a4a1b28c6091ca892ed098e0306 to your computer and use it in GitHub Desktop.
package com.escola.modelo;
public class Aluno {
public Aluno(String nome, Integer idade, String cidade, double notaDeCorte, Integer dividirPor) {
this.nome = nome;
this.idade = idade;
this.cidade = cidade;
this.notaDeCorte = notaDeCorte;
this.dividirPor = dividirPor;
}
//getters e setters
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment