3263 - [创新第七章递归25343]振兴中华
标题: 振兴中华
小明参加了学校的趣味运动会,其中的一个项目是:跳格子。
地上画着一些格子,每个格子里写一个字,如下所示:
从我做起振
我做起振兴
做起振兴中
起振兴中华
比赛时,先站在左上角的写着“从”字的格子里,可以横向或纵向跳到相邻的格子里,但不能跳到对角的格子或其它位置。一直要跳到“华”字结束。
要求跳过的路线刚好构成“从我做起振兴中华”这句话。
请你帮助小明算一算他一共有多少种可能的跳跃路线呢?
答案是一个整数。

Input
无
Output
跳法数字
Examples
Input
no input needed
Output
35
Solution C
#include<stdio.h> #define w 5 #define h 4 int gezhi(int n,int m) { if(n==w-1&&m==h-1) { return 1; } else if(n<w-1) { if(m<h-1) { return gezhi(n+1,m)+gezhi(n,m+1); } else { return gezhi(n+1,m); } } else { if(m<h-1) { return gezhi(n,m+1); } } return 0; } int main() { printf("%d\n",gezhi(0,0)); }
Solution C++
#include<iostream> using namespace std; int main() { cout<<"35"<<endl; return 0; }