Skip to content

Instantly share code, notes, and snippets.

@jm66
Last active August 30, 2015 01:31
Show Gist options
  • Save jm66/caad3144b413acc2c18d to your computer and use it in GitHub Desktop.
Save jm66/caad3144b413acc2c18d to your computer and use it in GitHub Desktop.
Error Lógico
public class CalcTiempoDescarga {
public double sizeMB, speedMBps, timeSec;
public CalcTiempoDescarga(double sizeMB, double speedMBps) {
this.sizeMB = sizeMB;
this.speedMBps = speedMBps;
}
public void calcular() {
this.timeSec = sizeMB / speedMBps * 1024;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment