蓝桥杯算法提高VIP-理财计划-题解(C++代码)
摘要: #include
#include
using namespace std ;
int main() {
double rate;
int……
蓝桥杯算法提高VIP-理财计划-题解(Java代码)
摘要: import java.math.RoundingMode;
import java.text.DecimalFormat;
import java……
蓝桥杯算法提高VIP-理财计划 (C语言代码)
摘要:解题思路:注意事项:需要注意这里是保留小数点后两位,而不是四舍五入!!!参考代码:#include<stdio.h>int main(){ int n, i; float k, p, ……
蓝桥杯算法提高VIP-理财计划 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main( int argc, char **argv ){ int k, n; float p; s……
小白,看看就行,不动脑袋
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>using namespace std;int main(){ int k, n; dou……
理财计划python
摘要:解题思路:注意事项:注意最后输出的时候不能直接使用 格式化输出 不然 默认的四舍五入会导致结果错误参考代码:original = input().split()k = int(original[0……
wu-理财计划 (C++代码)
摘要:解题思路:题目是按解题思路来的
注意事项:
注意是输出两位小数,而不是保留两位小数参考代码:#include<iostream>
#include<iomanip>
#include<……
python-理财计划
摘要:解题思路:注意事项:注意,此处保留两位小数,但并没有进行四舍五入,而是直接保留两位小数。参考代码:def f(m,t,r):
new_m = m
for i in rang……
不能四舍五入,所以要用点小技巧
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,t; double m; cin >> n >>……