day21

作者: 今生何求惟你 | 来源:发表于2018-07-01 07:48 被阅读2次

    题目:有5个人坐在一起,问第五个人多少岁?他说比第4个人大2岁。问第4个人岁数,他说比第3个人大2岁。问第三个人,又说比第2人大两岁。问第2个人,说比第一个人大两岁。最后问第一个人,他说是10岁。请问第五个人多大?

    程序:

    #include <stdio.h>

    int nice(int n);

    int main(void)

    {

    printf("The fifth people age is %d",nice(5));

    }

    int nice(int n)

    {

    int a;

    if( n == 1 )

    a = 10;

    else

    a = nice( n - 1 ) + 2;

    return a;

    }

    输出样例:

    day21

    相关文章

      网友评论

        本文标题:day21

        本文链接:https://www.haomeiwen.com/subject/yaiquftx.html