2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x,n; cin>>x>>n; …… 题解列表 2024年01月10日 0 点赞 0 评论 60 浏览 评分:0.0
编写题解 2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int x,n;cin>>x>>n;double s=x*1.…… 题解列表 2024年06月02日 0 点赞 0 评论 98 浏览 评分: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
2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double x,n; cin>>x>>n; …… 题解列表 2024年01月13日 0 点赞 0 评论 54 浏览 评分:0.0
送分了........ 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b; double c=0; scanf("%d …… 题解列表 2024年11月26日 0 点赞 0 评论 69 浏览 评分:0.0
2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai…… 题解列表 2023年11月17日 0 点赞 0 评论 81 浏览 评分: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
人口增长问题 摘要:参考代码: ```c #include int main() { int n; double x;//记得设浮点型,不然输出可能有问题 scanf("%lf%d",&x,&n); …… 题解列表 2023年09月08日 0 点赞 0 评论 164 浏览 评分:0.0
python 2806: 人口增长问题 摘要:参考代码:x, n = map(int, input().split()) for _ in range(n): x += x * 0.001 print("%.4f" %x)…… 题解列表 2024年03月13日 0 点赞 0 评论 225 浏览 评分:0.0
题解 2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ int n; doubl…… 题解列表 2023年11月08日 0 点赞 0 评论 68 浏览 评分:0.0