Skip to content

Instantly share code, notes, and snippets.

@FreeFly19
Forked from greensma/Ex1.java
Last active October 23, 2016 22:15
Show Gist options
  • Save FreeFly19/acf3274f93f07e7a2225ef58407205ee to your computer and use it in GitHub Desktop.
Save FreeFly19/acf3274f93f07e7a2225ef58407205ee to your computer and use it in GitHub Desktop.
Home work #2 Иван Смаглюк
class Ex1 {
public static void main(String args[]) {
int a = 4;
System.out.print(a);
if (a % 2 == 0) {
System.out.println(" is Even number");
} else {
System.out.println(" is Odd number");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment