The Hello Application while

// This is the Hello program in Java
 
 class Hello {
 
   public static void main (String args[]) {
 
     int i;
    
     System.out.print("Hello ");   // Say Hello
     i = 0;          // Initialize loop counter
     while (i < args.length) { // Test and Loop
       System.out.print(args[i]);  
       System.out.print(" ");
       i = i + 1;     // Increment Loop Counter
     }
     System.out.println();  // Finish the line
  }
 
}

Copyright 1996 Elliotte Rusty Harold
elharo@sunsite.unc.edu
This Chapter
Examples
Home