Skip to content

Instantly share code, notes, and snippets.

@folivetti
Created March 5, 2017 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save folivetti/174cf26025593c6b8e26ac78d020763f to your computer and use it in GitHub Desktop.
Save folivetti/174cf26025593c6b8e26ac78d020763f to your computer and use it in GitHub Desktop.
import java.util.Scanner;
class Main {
public static void main(String[] args) {
int x;
Scanner leitor = new Scanner(System.in);
x = leitor.nextInt();
if(x%2 == 0) {
System.out.println("par");
} else {
System.out.println("impar");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment