Last active
April 14, 2017 16:57
-
-
Save danilosilvadev/6fe2082527695c204caa4f14840f61f6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package votos; | |
import java.util.Scanner; | |
public class Votos { | |
Scanner e; | |
public static void main(String[] args) { | |
int idade; | |
e = new Scanner (System.in); | |
System.out.println("Voce tem titulo de eleitor se sim digite 1 se nao digite 2 "); | |
int Titulo = e.nextInteger(); | |
if(Titulo == 1 ){ | |
System.out.println("Você pode votar. "); | |
} | |
if (Titulo == 2 ){ | |
System.out.println("Digite sua Idade"); | |
idade = e.nextInteger(); | |
age(idade); | |
} | |
} | |
public void age(int age){ | |
if(idade <= 15 ){ | |
System.out.println("nao pode votar "); | |
} | |
else if (idade <= 17 ){ | |
System.out.println("Voto Facultativo"); | |
} | |
if(idade >= 65 ){ | |
System.out.println("Pode votar mas nao e obrigatorio "); | |
} | |
else { | |
System.out.println("Voto Obrigatorio"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment