软件工程爬楼梯


#include "stdafx.h"
#include<iostream>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
  int a,b,c=1;
  int m[8];
  cout<<"输入台阶数";
  cin>>a;
  m[0]=1,m[1]=2;
  for(b=2;b<a;b++)
{
 m[b]=m[b-1]+m[b-2];
 c++;
}
  cout<<m[c];
 
}

posted @ 2017-03-07 21:45  王钰琳  阅读(86)  评论(0编辑  收藏  举报