Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created December 15, 2015 02:25
Show Gist options
  • Save codecademydev/0f7fc4b7aaabd456c023 to your computer and use it in GitHub Desktop.
Save codecademydev/0f7fc4b7aaabd456c023 to your computer and use it in GitHub Desktop.
Codecademy export
public class Magic {
public static void main(String[] args) {
// This little program does a bunch of math witchery to always return the same number no matter what myNumber is
int myNumber = 12;
int stepOne = (myNumber * myNumber);
int stepTwo = (stepOne + myNumber);
int stepThree = (stepTwo / myNumber);
int stepFour = (stepThree + 17);
int stepFive = (stepFour - myNumber);
int stepSix = (stepFive / 6);
System.out.println(stepSix);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment