Skip to content

Instantly share code, notes, and snippets.

@codewithcats
Created April 17, 2012 22:47
Show Gist options
  • Save codewithcats/2409619 to your computer and use it in GitHub Desktop.
Save codewithcats/2409619 to your computer and use it in GitHub Desktop.
Calculate Unit Per Day - Team 8
public int calUnit() {
double realval = (this.power / 1000.00) * this.duration;
int tem = (int) realval;
if (realval - tem != 0) {
tem += 1;
}
return tem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment