题解 2806: 人口增长问题

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

新手 入口增长问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,i;    double x;    scanf("%lf %d",&x,&n);    fo……

普普通通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int x,n; scanf("%d%d",&x,&n); printf("%0……

送分了........

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int a,b;    double c=0;    scanf("%d ……

2806: 人口增长问题 递推 累乘

摘要:题目阅读:初始值为x,每年增长0.1%(即0.001),求n年后为多少解题分析:1年后:x1=x*(1+0.001)2年后:x2=x1*(1+0.001)....结论:这是一个简单的递推问题,通过累乘……

人口增长问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    float a,b,i;    scanf("%f %f",&a,&b);    for(i=0;i<b;……

2806: 人口增长问题

摘要:参考代码:#include<stdio.h>int main(){    int x,n;//x为基期,n为年数    //int r=0.001;    double now,temp=1;    ……

python 2806: 人口增长问题

摘要:参考代码:x, n = map(int, input().split()) for _ in range(n):     x += x * 0.001 print("%.4f" %x)……

人口增长问题C解

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int x,n;    double m;    scanf("%d %d",&x,&n);    m=x……

2806: 人口增长问题

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double x,n;    cin>>x>>n; ……