码迷,mamicode.com
首页 > 其他好文 > 详细

骨牌铺方格

时间:2018-01-13 00:26:46      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:body   https   www.   using   scanf   stdio.h   lld   span   gpo   

题目:https://www.nowcoder.com/pat/2/problem/258

 1 #include <iostream>
 2 #include <stdio.h>
 3 
 4 using namespace std;
 5 
 6 long long diff[103] = { 1, 1, 2 };
 7 
 8 int main()
 9 {
10     for (int i = 3; i<103; i++) {
11         diff[i] = diff[i - 1] + diff[i - 2];
12     }
13     unsigned int n;
14     unsigned int a, b, d;
15     while (~scanf("%d", &n)) {
16         printf("%lld\n", diff[n]);
17     }
18     return 0;
19 }

 

骨牌铺方格

标签:body   https   www.   using   scanf   stdio.h   lld   span   gpo   

原文地址:https://www.cnblogs.com/jaydenouyang/p/8277930.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!