Skip to content

Instantly share code, notes, and snippets.

@Flaque
Last active August 29, 2015 14:02
Show Gist options
  • Save Flaque/0bca1f6ae97efc9fa12c to your computer and use it in GitHub Desktop.
Save Flaque/0bca1f6ae97efc9fa12c to your computer and use it in GitHub Desktop.
public class MathLesson {
public static void main(String[] args){
int number = 0;
number = number + 5;
number = number * 5;
number = number / 5;
number = number - 5;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment