小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>using namespace std;int main(){ int k, n; dou…… 题解列表 2024年11月07日 0 点赞 0 评论 64 浏览 评分:0.0
蓝桥杯算法提高VIP-理财计划(这题坑还挺多的,最后的值不能四舍五入) 摘要:解题思路:题目好像没有要求要保留两位小数,但测试要求是,浮点类型转换为整型是不会四舍五入的注意事项:参考代码:#include<stdio.h> int main() { int k,n; …… 题解列表 2023年11月03日 0 点赞 0 评论 123 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float k,p,profit,money=0.0,sum_profit=0.0; int n; …… 题解列表 2023年06月29日 0 点赞 0 评论 138 浏览 评分:0.0
蓝桥杯算法提高VIP—理财计划—Python 摘要:解题思路:注意事项:参考代码:k,n,p=map(float,input().split())s=0m=kfor i in range(1,int(n+1)): s+=k*p k+=k*p+m…… 题解列表 2023年04月08日 0 点赞 0 评论 163 浏览 评分:9.9
理财计划(c++) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double k=0,n=0,p=0…… 题解列表 2023年01月25日 0 点赞 0 评论 73 浏览 评分:0.0
不能四舍五入,所以要用点小技巧 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,t; double m; cin >> n >>…… 题解列表 2023年01月14日 0 点赞 0 评论 71 浏览 评分:0.0
逆向思维+拆分思维 摘要:解题思路:昨晚睡前躺在床上,睡不着想出来的比较常规的解法这是复利的一种数学常规算法吧我数学实在差需要加强注意事项:参考代码:k,n,p=map(float,input().split())s=0m=k…… 题解列表 2022年07月24日 0 点赞 0 评论 95 浏览 评分:0.0
蓝桥杯算法提高VIP-理财计划 题解(c++超级的。。。。。) 摘要:解题思路:就看你对题目的理解能力啦!没什么!上程序!(说实话,我觉得这题目有点古怪,有这样算利益的吗!)(我也去银行看看!)注意事项:无。参考代码:#include<bits/stdc++.h>usi…… 题解列表 2022年05月14日 0 点赞 0 评论 201 浏览 评分:0.0
编写题解 1547: 蓝桥杯算法提高VIP-理财计划(floor向下取整) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include <bits/stdc++.h> using namespace std; int main() { …… 题解列表 2022年05月11日 0 点赞 0 评论 80 浏览 评分:0.0
c++理财计划 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;class maney{public:int n;float k,p; };int …… 题解列表 2022年03月19日 0 点赞 0 评论 175 浏览 评分:0.0