题目:​​http://acm.hdu.edu.cn/showproblem.php?pid=2178​

题目很很不清楚的一道水题,没有为什么这样,但这样就过了

#include <stdio.h>
#include <math.h>
int main()
{
int t,n;
scanf("%d",&t);
while(t--)
scanf("%d",&n),printf("%d\n",(int)pow(2,n)-1);
return 0;
}