Java Exercise 12: Call by Value and Parameter Passing
public class Function1 { // Call by value and parameter passing method public static void Star(int st) { int i; for (i = 0; i < st; i++) { System.out.print('*'); } System.out.println(); } public static void main(String arg[]) { Star(5); // prints ***** Star(3); // prints *** Star(10); // prints ********** } }Demonstrates passing arguments to methods (call by value). The parameter st receives a copy of the argument value.
