Content deleted Content added
Father Goose (talk | contribs) m Father Goose moved page Essential complexity (numerical measure of "structuredness") to Essential complexity: unneeded disambigation in title, hatnote already addresses the problem |
Michael9422 (talk | contribs) m add cosmetic spaces to code example |
||
Line 14:
<source lang="C">
for (i = 0; i < 3; i++) {
if (a[i] == 0) b[i] += 2;
}
</source>
Line 22:
<source lang="C">
for (i = 0; i < m; i++) {
for (j = 0; j < n; j++) {
if (z[i][j] != 0)
goto non_zero;
}
goto found;
non_zero:
}
i = -1;
found:
</source>
|