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

HDU1996 汉诺塔VI

时间:2016-07-16 07:02:58      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

问题链接:HDU1996 汉诺塔VI。水题,用C语言编写程序。

本题实际上是计算3^n。编程中需要注意输出格式。

AC的C语言程序如下:

/* HDU1996 汉诺塔VI */

#include<stdio.h>
#include<math.h>

int main (void)
{
    int t, n;

    scanf("%d",&t);
    while(t--)
    {
        scanf("%d", &n);
        printf("%.lf\n", pow(3, n));
    }

    return 0;
}


HDU1996 汉诺塔VI

标签:

原文地址:http://blog.csdn.net/tigerisland45/article/details/51922187

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