Skip to content

Instantly share code, notes, and snippets.

@ok1003
Created December 4, 2021 00: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 ok1003/be482628719714116fd3cae9a0ae8c21 to your computer and use it in GitHub Desktop.
Save ok1003/be482628719714116fd3cae9a0ae8c21 to your computer and use it in GitHub Desktop.
Java Silver
public class Main{
public static void main(String[] args) {
int a = 10;
if(a++ > 10)
if(a < 100) a--
else a--;
else a++;
System.out.println(a);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment