FileDocCategorySizeDatePackage
Reverse.javaAPI DocExample956Mon Sep 22 13:30:30 BST 1997None

Reverse

public class Reverse extends Object
This program echos the command-line arguments backwards.

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

    // Loop backwards through the array of arguments
    for(int i = args.length-1; i >= 0; i--) {
      // Loop backwards through the characters in each argument
      for(int j=args[i].length()-1; j>=0; j--) {
        // Print out character j of argument i.
        System.out.print(args[i].charAt(j));
      }
      System.out.print(" ");  // add a space at the end of each argument
    }
    System.out.println();     // and terminate the line when we're done.