Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. public class Turma extends Coisa{
  2.  public int capacidade;
  3.  public int ano;
  4.  public int semestre;
  5.  public int curso ;
  6.  Scanner input;
  7.  //public ArrayList<Turma> turmas;
  8.  
  9.   public Turma () {
  10.     this.nomeAbreviado = "a";
  11.     this.nomeCompleto = "a";
  12.     this.semestre = 1;
  13.     this.ano = 0;
  14.     this.curso = 0;
  15.     input = new Scanner( System.in );
  16.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement