18 lines
237 B
Text
18 lines
237 B
Text
|
void countdown (int n) {
|
||
|
if (n != 0) {
|
||
|
puti(n);
|
||
|
puts("\n");
|
||
|
countdown(n - 1);
|
||
|
}
|
||
|
else {
|
||
|
puts("BOUM!\n");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int main () {
|
||
|
puts("Count from? ");
|
||
|
countdown(geti());
|
||
|
|
||
|
return 0;
|
||
|
}
|