这道题我们需要用一个 pow 函数。
AC CODE:
cpp
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
cout<<int(pow(2,n));
return 0;
}
这道题我们需要用一个 pow 函数。
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
cout<<int(pow(2,n));
return 0;
}