2806: 人口增长问题 摘要:参考代码:#include<stdio.h>int main(){ int x,n;//x为基期,n为年数 //int r=0.001; double now,temp=1; …… 题解列表 2024年07月16日 0 点赞 0 评论 154 浏览 评分:0.0
人口增长问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a,b,i; scanf("%f %f",&a,&b); for(i=0;i<b;…… 题解列表 2024年11月07日 0 点赞 0 评论 150 浏览 评分:9.9
2806: 人口增长问题 递推 累乘 摘要:题目阅读:初始值为x,每年增长0.1%(即0.001),求n年后为多少解题分析:1年后:x1=x*(1+0.001)2年后:x2=x1*(1+0.001)....结论:这是一个简单的递推问题,通过累乘…… 题解列表 2024年11月09日 0 点赞 0 评论 93 浏览 评分:9.9
送分了........ 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b; double c=0; scanf("%d …… 题解列表 2024年11月26日 0 点赞 0 评论 69 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int x,n; scanf("%d%d",&x,&n); printf("%0…… 题解列表 2024年11月27日 0 点赞 0 评论 83 浏览 评分:0.0
新手 入口增长问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; double x; scanf("%lf %d",&x,&n); fo…… 题解列表 2024年12月11日 0 点赞 0 评论 114 浏览 评分:0.0