Guest User

Untitled

a guest
Oct 21st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. class Candidato{
  2.     int numero,
  3.         votos=0;
  4.     String nome;
  5.    
  6.     boolean classificado(int votosminimos){
  7.         return (this.votos>=votosminimos);
  8.     }
  9.    
  10.     boolean classificado(){
  11.         return (this.votos>=10);
  12.     }
  13.    
  14.     void show(){
  15.         System.out.print("\nNome  : "+this.nome);
  16.         System.out.print("\nNumero: "+this.numero);
  17.         System.out.print("\nVotos : "+this.votos);
  18.         System.out.println();
  19.     }
  20. }
Add Comment
Please, Sign In to add comment