aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x; int n; cin…… 题解列表 2023年07月12日 0 点赞 0 评论 162 浏览 评分:0.0
人口增长问题 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x; int n; cin…… 题解列表 2023年07月08日 0 点赞 0 评论 197 浏览 评分:6.0
2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:x,n = map(int,input().split())for i in range(0,n): x += x * 0.001 print('{:…… 题解列表 2023年02月07日 0 点赞 0 评论 223 浏览 评分:0.0
人口增长问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ double x,n; int i=1; scanf("%lf %lf",…… 题解列表 2023年02月04日 0 点赞 0 评论 205 浏览 评分:0.0
人口增长问题(简单点) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ int n; doubl…… 题解列表 2022年11月10日 0 点赞 0 评论 324 浏览 评分:9.0
人口增长问题的C语言详解 摘要:解题思路:计算n年后的人数,要对人口进行循环加法,所以循环体系用for循环或者while循环。注意事项:注意求n年后的人数,第n年的增量不算在其内。也就是循环n-1次即可。输出保留四位小数,四位用%.…… 题解列表 2022年11月02日 0 点赞 6 评论 879 浏览 评分:8.9