Created
August 30, 2015 01:22
-
-
Save jm66/da130ec1f3d6f348bb7c to your computer and use it in GitHub Desktop.
CalcTiempoDescarga.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
public class CalcTiempoDescarga { | |
public double sizeMB, speedMBps, timeSec; | |
public CalcTiempoDescarga(double sizeMB, double speedMBps) { | |
this.sizeMB = sizeMB; | |
this.speedMBps = speedMBps; | |
} | |
public int calcular() { | |
this.timeSec = sizeMB / speedMBps, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment