输入:n
输出:2^n
#include<bits/stdc++.h>
using namespace std;
int main(){double n,a;cin>>n;s=pow(2,n); //pow(x,y)是求x^y(#include<cmath>)printf("%.0lf",s); //lf是double型,.0是保留0位小数(个位)return 0;
}
输入:n
输出:2^n
#include<bits/stdc++.h>
using namespace std;
int main(){double n,a;cin>>n;s=pow(2,n); //pow(x,y)是求x^y(#include<cmath>)printf("%.0lf",s); //lf是double型,.0是保留0位小数(个位)return 0;
}