Skip to content

Instantly share code, notes, and snippets.

@greensma
Last active October 24, 2016 14:50
Show Gist options
  • Save greensma/789d53a60f737bb377f60100063edeb5 to your computer and use it in GitHub Desktop.
Save greensma/789d53a60f737bb377f60100063edeb5 to your computer and use it in GitHub Desktop.
Home work #2 Иван Смаглюк
class Ex1 {
public static void main(String args[]) {
int a = 4;
if((a % 2) == 0)
System.out.println(" is Even number" + a);
else
System.out.println(" is Odd number" + a );
}
}
// по идее должно получится, но авыдаёт ошибку, хотелось бы услышать в чём она
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment