Skip to content

Instantly share code, notes, and snippets.

@jm66
Created August 30, 2015 01:22
Show Gist options
  • Save jm66/da130ec1f3d6f348bb7c to your computer and use it in GitHub Desktop.
Save jm66/da130ec1f3d6f348bb7c to your computer and use it in GitHub Desktop.
CalcTiempoDescarga.java
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