Skip to content

Instantly share code, notes, and snippets.

@singhrahuldps
Created April 29, 2020 17:48
Show Gist options
  • Select an option

  • Save singhrahuldps/c7890beaeebb41621f4423840378b3ce to your computer and use it in GitHub Desktop.

Select an option

Save singhrahuldps/c7890beaeebb41621f4423840378b3ce to your computer and use it in GitHub Desktop.
boolean isOdd;
int num = 7;
isOdd = (num%2==1) ? true : false;
System.out.println(isOdd);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment