This repository has been archived on 2022-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
compilateurMIPS/tests/33_fact-loop.test
2022-12-15 19:39:41 +01:00

12 lines
160 B
Text

int factloop (int n) {
int r = 1;
while (n > 0) {
r = n * r;
n = n - 1;
}
return r;
}
void main () {
puti(factloop(10));
}