参考代码:
#include<iostream> using namespace std; int main() { float x; int n; cin >> x; cin >> n; double res = 1; double x2 = x; for(int i = 0; i < n; i++) { res += x2; x2 *= x; } printf("%.2f", res); return 0; }
0.0分
5 人评分
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:724 |
众数问题 (C++代码)浏览:1288 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:744 |
C二级辅导-阶乘数列 (C语言代码)浏览:642 |
震宇大神的杀毒软件 (C语言代码)浏览:1348 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:729 |
C二级辅导-统计字符 (C语言代码)浏览:528 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:511 |
【数组的距离】 (C语言代码)浏览:787 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:900 |