您需要 登录 才可以下载或查看,没有账号?立即注册
#if(0) 第二十八题: 题目:有五个人坐在一起,问第五个人多少岁?他说比第四个人大2岁。问第四个人的岁数, 他说比第三个人大2岁。问第三个人,又说比第二个人大两岁。问第二个人,说比第一个人 大两岁。最后问第一个人,他说是十岁。请问第五个人多大? #endif #include<stdio.h> int old(int x); int main() { int x=5,result; result=old(x); printf("第五个人的年纪为%d",result); } int old(int x) { if(x==1) return 10; else { return old(x-1)+2; } }
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)
GMT+8, 2025-1-11 14:29
Powered by Discuz! X3.4
© 2001-2023 Discuz! Team.