Advertisement
Jacsonf

Aluno

Jan 17th, 2021
792
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.60 KB | None | 0 0
  1. package testes;
  2.  
  3. public class Aluno {
  4.     private String nome, curso;
  5.     private int anoIngresso;
  6.     private double CRA;
  7.    
  8.    
  9.    
  10.    
  11.     public String getNome() {
  12.         return nome;
  13.     }
  14.     public void setNome(String nome) {
  15.         this.nome = nome;
  16.     }
  17.     public String getCurso() {
  18.         return curso;
  19.     }
  20.     public void setCurso(String curso) {
  21.         this.curso = curso;
  22.     }
  23.     public int getAnoIngresso() {
  24.         return anoIngresso;
  25.     }
  26.     public void setAnoIngresso(int anoIngresso) {
  27.         this.anoIngresso = anoIngresso;
  28.     }
  29.     public double getCRA() {
  30.         return CRA;
  31.     }
  32.     public void setCRA(double cRA) {
  33.         CRA = cRA;
  34.     }
  35.    
  36.    
  37. }
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement