C语言基础编程题
5-1 求幂之和 (15分)本题要求编写程序,计算sum=2^1 + 2^2 + 2^3 + \cdots + 2^nsum=21+22+23+⋯+2n。可以调用pow函数
C语言基础编程题