Skip to content

Instantly share code, notes, and snippets.

@monbro
Created December 10, 2012 22:48
Show Gist options
  • Save monbro/4254045 to your computer and use it in GitHub Desktop.
Save monbro/4254045 to your computer and use it in GitHub Desktop.
// test 2erfolge, dezimal 0,1,2,3
var laenge = 2;
var anzahl = Math.pow(2, laenge);
var i, j;
// document.write(anzahl);
for (i = 0; i < anzahl; i++) {
document.write(i + ": <br>");
for (j=0; j < laenge; j++) {
var binaer =
document.write(j+" ");
}
document.write("<br>");
}​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment