document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Cliente{
  2.   public static void main (String [] args ) throws Exception {
  3.     File archivo1 = null;//se definen variables para leer un archivo
  4.     FileReader fr1 = null;//definimos lector
  5.     BufferedReader br1 = null;//definimos buffer para lectura
  6.     int t=0;
  7.     double suma=0,sumatotal=0;
  8.     ObjectOutputStream oos = null;
  9.     ObjectInputStream  ois = null;
  10.     DataOutputStream dos = null;
  11.     int  tamaƱo=999999999;
  12.     int leo;
  13.     int contados = 0;
');