Guest User

Untitled

a guest
Jun 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. if (n == 0) {
  2. System.out.print("Ani sude, ani liche");
  3. } else if ((n % 2) == 0) {
  4. System.out.print("Sude");
  5. } else {
  6. System.out.print("Liche");
  7. }
Add Comment
Please, Sign In to add comment