对任意给定的不超过 10 的正整数 n,要求你输出 2 n 。不难吧?
输入格式:输入在一行中给出一个不超过 10 的正整数n。输出格式:在一行中按照格式2^n = 计算结果输出2n的值。注意输出样例' = '前后的空格 头文件的<cmath>#include <iostream>#include <cmath> using namespace std;int main(){ int n,m; cin>>n; m=pow(2,n);