Advertisement
tutorfree

Exerc01 - Pacote Entidades - classe Curso

Aug 21st, 2015
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.23 KB | None | 0 0
  1. /*
  2.    POO
  3.    2 pacotes: Principal (classe Principal) e Entidades (classes: Aluno e Curso)
  4.    Apenas um exercício sobre POO
  5. */
  6. package Entidades;
  7.  
  8. public class Curso
  9. {
  10.     //Atributos
  11.     public String sigla, nome, turno;    
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement