// $Id: reversefile.java,v 1.2 2001/05/31 22:41:04 doug Exp $ // http://www.bagley.org/~doug/shootout/ // author: Dirus@programmer.net import java.io.*; import java.util.*; public class reversefile { public static void main(String[] args) { ArrayList al = new ArrayList(4096); try { BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String strLine; while((strLine = in.readLine()) != null) al.add(strLine); in.close(); } catch (IOException e) { e.printStackTrace(); System.exit(1); } String strArray[] = new String[al.size()]; al.toArray(strArray); for(int i = strArray.length - 1; i >= 0; i--) System.out.println(strArray[i]); } }