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

Utopian Tree

时间:2014-09-26 00:40:08      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:utopian tree

Utopian Tree

#include <iostream>
using namespace std;

int height(int n) {
    if(n == 0)
        return 1;
    else
        {
        if(n % 2 == 0)
            return height(n - 1)+1;
        else
            return height(n - 1)*2;
        
    }
    
    return 0;
}
int main() {
    int T;
    cin >> T;
    while (T--) {
        int n;
        cin >> n;
        cout << height(n) << endl;
    }
}


Utopian Tree

标签:utopian tree

原文地址:http://9320314.blog.51cto.com/9310314/1558247

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