题解 2807:计算金额(for) 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().strip().split())for i in range(c): b *= (1+a/100)print(int(b…… 题解列表 2024年07月29日 0 点赞 0 评论 104 浏览 评分:0.0
python 编写题解 2807 摘要:参考代码:R, M, Y = map(int, input().split()) for _ in range(Y): M += M * (R * 0.01) print("%.d" %…… 题解列表 2024年03月13日 0 点赞 0 评论 94 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月11日 0 点赞 0 评论 88 浏览 评分:9.9
很好理解,注意变量 摘要:解题思路:注意事项:%.0lf,会四舍五入参考代码:#include<stdio.h>int main(){ int y; double m,r; scanf("%lf%lf%d",…… 题解列表 2023年11月26日 0 点赞 0 评论 269 浏览 评分:9.9
2807: C++解题 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai…… 题解列表 2023年11月17日 0 点赞 0 评论 75 浏览 评分:0.0
for循环c语言版 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int Y; float M,R; scanf("%f %f %d",&R,&M,&Y); …… 题解列表 2023年11月04日 0 点赞 0 评论 117 浏览 评分:0.0
这个题题目是敏感词汇(注意变量类型) 摘要:注意事项: %0.0lf会对浮点数四舍五入 %0.0f会直接舍弃小数部分 %d输出浮点类型可能会出错 参考代码: ```c #include int main() { int y;…… 题解列表 2023年09月08日 0 点赞 0 评论 110 浏览 评分:0.0
题解 2807 YHLX 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <math.h>int main(){ int R, Y; long int M; scanf("%…… 题解列表 2023年08月17日 0 点赞 0 评论 194 浏览 评分:6.0
简单又实用 摘要:```cpp #include #include // 包含cmath头文件来使用pow函数 using namespace std; int main() { int R, …… 题解列表 2023年07月12日 0 点赞 0 评论 322 浏览 评分:9.9
给用Java的开一下荒土 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2023年04月16日 0 点赞 0 评论 120 浏览 评分:0.0