HDU 2178 猜数字
Posted zlrrrr
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2178 猜数字相关的知识,希望对你有一定的参考价值。
http://acm.hdu.edu.cn/showproblem.php?pid=2178
Problem Description
A有1数m,B来猜.B每猜一次,A就说"太大","太小"或"对了" 。
问B猜n次可以猜到的最大数。
问B猜n次可以猜到的最大数。
Input
第1行是整数T,表示有T组数据,下面有T行
每行一个整数n (1 ≤ n ≤ 30)
每行一个整数n (1 ≤ n ≤ 30)
Output
猜n次可以猜到的最大数
Sample Input
2
1
3
Sample Output
1
7
代码:
#include <bits/stdc++.h> using namespace std; int main() { int T; scanf("%d", &T); while(T --) { int x; scanf("%d", &x); int num = pow(2, x) - 1; printf("%d ", num); } return 0; }
以上是关于HDU 2178 猜数字的主要内容,如果未能解决你的问题,请参考以下文章