Advertisement
Guest User

pedaso2

a guest
Nov 29th, 2013
894
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  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;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement