Created
August 30, 2015 01:20
-
-
Save jm66/e89d735ca65d59076550 to your computer and use it in GitHub Desktop.
Calcula.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Calcula{ | |
public static void main(String[] args) { | |
CalcTiempoDescarga CalculadoraTD = new CalcTiempoDescarga(1024, 0); | |
CalculadoraTD.calcular(); | |
System.out.println(CalculadoraTD.getTiempo()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment