#include <iostream> #include <math.h> // 使用pow来求次数,比如2^n可以用 pow(2,n)来表示 #include<iomanip> //头文件 ,可以调用 fixed<<setprecision(1)定义保留几位小数 using namespace std; int i; //i,n为次数,设置整型 int n; double h, s; //...