Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class DesafioA {
- public static void main(String args[]){
- String num = "1";
- Scanner leia = new Scanner(System.in);
- while (num != "0") {
- System.out.print("Entre com o numero: ");
- num = leia.next();
- int d1 = Integer.parseInt(num.substring(0,1));
- int d2 = Integer.parseInt(num.substring(1,2));
- Par(d1,d2);
- }
- }
- public static void Par(int d1, int d2) {
- if (d1%2==0) {
- System.out.print("\nO primeiro digito eh par");
- }
- else {
- System.out.print("\nO primeiro digito eh impar");
- }
- if (d2%2==0) {
- System.out.print("\nO segundo digito eh par\n\n");
- }
- else {
- System.out.print("\nO segundo digito eh impar\n\n");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement