Skip to content

Instantly share code, notes, and snippets.

@eric-unc
Created January 6, 2021 20:12
Show Gist options
  • Select an option

  • Save eric-unc/933ed4c00265aa8da04cfda3c874dc3e to your computer and use it in GitHub Desktop.

Select an option

Save eric-unc/933ed4c00265aa8da04cfda3c874dc3e to your computer and use it in GitHub Desktop.
class Problem {
public static void main(String[] args) {
int x = 0;
int y = 5;
int z = 1;
x++;
y -= 3;
z = x + z;
x = y * z;
y %= 2;
z--;
System.out.println(x + " " + y + " " + z);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment