Showing posts with label Java Programming String Array. Show all posts
Showing posts with label Java Programming String Array. Show all posts

Monday, October 25, 2021

String Array and passing method in java

 In this task, we pass a method and also cover the passing String Array to the method.



Code:


 import java.util.Scanner;
public class StringArray{
  public static void main(String[] args){

      String[] names = {"Babar", "Fakhar", "Kohli", "Gilchrist"};

      //Take Array elements from user
      for(int i=0; i<names.length; i++){
         System.out.print("\nnames[" + i + "] = " + names[i]);
      }
   
  }//main

}//class

OutPut:

String Array and passing method in java

 In this task, we pass a method and also cover the passing String Array to the method. Code:   import java.util.Scanner; public class String...