we use only string in the main method not any other one.. specify the reason... and tell me each and every meaning of public static void main(String args[])...
import javax.swing.JOptionPane; public class a3c4e23 { public static void main (String args[]) { int counter = 0; int number; int largest = 0; int second = 0; while (counter<10) { counter++; number = Integer.parseInt(JOptionPane.showInputDialog("Enter integer")); if (number >= largest) largest=number; else if (number < largest && second >= number) second=number; else largest = largest; second = second; } System.out.println("Largest number input: " + largest); System.out.println("Second largest input: " + second); }}
By running a program at a command line we can pass some arguments to it. These arguments are called command line arguments. This array is used to hold the command line from the command prompt
In the main method,the String array args refers to the arguments that the program may require before starting. In many cases you may want the program to take some values as input for processing. this string array is for that purpose. It is needed to configure the application to run a particular way or provide it with some piece of information it needs.
Ads