猜数字

来源:互联网 发布:mac pro 重新安装系统 编辑:程序博客网 时间:2024/06/06 08:36
Problem Description
A有1数m,B来猜.B每猜一次,A就说&quot;太大&quot;,&quot;太小&quot;或&quot;对了&quot; 。 <br>问B猜n次可以猜到的最大数。 <br>
 

Input
第1行是整数T,表示有T组数据,下面有T行 <br>每行一个整数n (1 ≤ n ≤ 30) <br>
 

Output
猜n次可以猜到的最大数<br>
 

Sample Input
2<br>1<br>3
 

Sample Output
1<br>7<br>
 简单题意:
    猜数字的题目,求出猜N次可以猜到的最大数。
解题思路形成过程:
  猜n次,能猜到的最大数字为pow(2,n)-1。所以从1到pow(2,n)-1,在n次都可以猜出来。
感想:
  透过文字看本质,想透了,代码实现以及算法也就清楚了。
AC代码:
  #include <iostream>
#include <cmath>
#include <cstdio>
using namespace std;
int main()
{
    int n,t;
    while(scanf("%d",&t)!=EOF)
    {
        for(int i=0;i<t;i++)
        {
            cin>>n;
            printf("%d\n",(int)pow(2,n)-1);
        }
    }
    return 0;
}
0 0
原创粉丝点击