弗莱


私信TA

用户名:1435075261

访问量:6636

签 名:

马梅,我还喜欢你,是不是有点可笑

等  级
排  名 1239
经  验 3060
参赛次数 0
文章发表 27
年  龄 0
在职情况 学生
学  校 野鸡大学
专  业

  自我简介:

怎么说呢,写得十分取巧,刚好就把规律给凑出来了。后面我有看到一位大佬写的递归思路,很像。


参考代码:

#include<stdio.h>

int main()

{

int N,K;

scanf("%d%d",&N,&K);

int p=K-1,q=K*(K-1);

if(N==2)

{

printf("%d\n",q);

}

else

{

    for(int i=3;i<=N;i++)

{

int temp;

temp=(K-1)*(p+q);

p=q;

q=temp;

}

printf("%d\n",q);

}

return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »