Advertisement
chete

wallmart

Apr 26th, 2014
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.94 KB | None | 0 0
  1. package supermercado;
  2. import java.util.ArrayList;
  3. import java.util.Scanner;
  4. import java.io.BufferedReader;
  5. import java.io.InputStreamReader;
  6. import java.io.IOException;
  7. public class Supermercado {
  8.  
  9.     public static void main(String[] args) throws IOException {
  10.         // TODO Auto-generated method stub
  11.        
  12.         String cadena;
  13.        
  14.         Fecha f1 = new Fecha(0, 0, 0);
  15.         double precio;
  16.         String nombre;
  17.        
  18.        
  19.         ArrayList<String> arrayList = new ArrayList();
  20.         String[] arrInicio;
  21.        
  22.         BufferedReader lee = new BufferedReader(new InputStreamReader(System.in));
  23.        
  24.         do {
  25.             cadena = lee.readLine();
  26.             arrayList.add(cadena);
  27.            
  28.             } while (cadena.length() !=0);{
  29.  
  30.             lee.close();
  31.             }
  32.         for (int i = 0; i < arrayList.size(); i++) {
  33.                 if (i == arrayList.size() - 1) {
  34.                     System.out.println(i + ". " + arrayList.get(i));
  35.                 } else {
  36.                     System.out.println(i + ". " + arrayList.get(i) + " ");
  37.                 }
  38.             }
  39.            
  40.    
  41.  
  42.  
  43.    
  44.        
  45.        
  46.        
  47.     }
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement