Function CountDown(count) { If (count < 1) { return; } Print (â??The current count is:â? +count); CountDown(count-1); } If the call CountDown(10).
Function CountDown(count) {
If (count < 1)
{
return;
}
Print ("The current count is:" +count);
CountDown(count-1);
}