Created
September 24, 2020 03:13
-
-
Save ucguy4u/ab2ff2dd0e98a16ddda32a7d7ac28708 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
/** | |
* @author uschauha | |
*/ | |
public class Main { | |
public static void main(String[] args) { | |
int localValue = 5; | |
calculate(localValue); | |
System.out.println(localValue); | |
} | |
private static void calculate(int calValue) { | |
calValue = calValue * 100; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment