C_数据结构_递归自己调用自己

# include <stdio.h>

void f(int n)
{
    if (n == 1)
        printf("哈哈
");
    else
        f(n-i);
}

int main(void)
{
    f(3);

    return 0;
}
原文地址:https://www.cnblogs.com/LXL616/p/10661620.html