Skip to content

Instantly share code, notes, and snippets.

@bkleinen
Created October 8, 2012 22:01
Show Gist options
  • Save bkleinen/3855274 to your computer and use it in GitHub Desktop.
Save bkleinen/3855274 to your computer and use it in GitHub Desktop.
Info3Ex1WhiteboxTest
// Code for White-box test exercise
public static int absoluteValueOf (int x) {
if (x < -1)
return -x;
else
return x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment