单点时限: 1.0 sec
内存限制: 256 MB
定义函数 Pow,计算 $2$ 的 $x$ 次方。
#include <stdio.h>
long long Pow(int x)
/* PreCondition:
x 是范围为 0-62 的一个整数。
PostCondition:
返回 2 的 x 次方的值
*/
{
}
int main() {
int x;
scanf("%d", &x);
printf("%lld\n", Pow(x));
return 0;
}
2
4