Created
January 16, 2016 14:47
-
-
Save dangnhdev/df516c251afd226eb4e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Test { | |
| public static void main(String[] args) { | |
| int argument1 = 10000; | |
| int argument2 = 9999; | |
| method(argument1, argument2) | |
| } | |
| public static void method(int parameter1, int parameter2){ | |
| System.out.println(parameter1); | |
| System.out.println(parameter2); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment