编写函数double powrint mint n计算m的n次幂要求在主函数中输入m和n调用函数powr输出结果。请只提供子函数的编写。【样例输入】3 7【样例输出】2187#includestdioh#includemathhdouble powrint mint n;int main int m n; scanfdd &m &n; pr
double powr(int m, int n){ return pow(m, n); }
原文地址: https://www.cveoy.top/t/topic/evDe 著作权归作者所有。请勿转载和采集!