题解 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 评论 109 浏览 评分:0.0
这个题题目是敏感词汇(注意变量类型) 摘要:注意事项: %0.0lf会对浮点数四舍五入 %0.0f会直接舍弃小数部分 %d输出浮点类型可能会出错 参考代码: ```c #include int main() { int y;…… 题解列表 2023年09月08日 0 点赞 0 评论 116 浏览 评分:0.0
2807: C++解题 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai…… 题解列表 2023年11月17日 0 点赞 0 评论 79 浏览 评分:0.0