算术表达式与顺序执行--5.计算分数的浮点数值 摘要:注意事项:输出的时候记得转换为double类型,不然结果是0.参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b)…… 题解列表 2023年03月23日 0 点赞 0 评论 117 浏览 评分:0.0
计算分数的浮点数值 摘要:解题思路:注意事项:保留九位小数,注意被除数不能为零参考代码:a,b = map(int,input(().split()) if b != 0: result = round(a/b,9) …… 题解列表 2024年07月21日 0 点赞 0 评论 245 浏览 评分:0.0
简单的写完就行了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int a,b; scanf("%d%d",&a,&b); double c; c = (double)a…… 题解列表 2024年11月15日 0 点赞 0 评论 218 浏览 评分:0.0
2765: 计算分数的浮点数值 摘要:```cpp #include #include using namespace std; int main() { int a,b; cin>>a>>b; c…… 题解列表 2023年01月10日 0 点赞 0 评论 202 浏览 评分:0.0
模仿范例改的 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double a,b; if(~scanf("%lf %lf", &a, &b)) i…… 题解列表 2023年03月20日 0 点赞 0 评论 144 浏览 评分:0.0
编写题解 2765: 计算分数的浮点数值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); double c=(double…… 题解列表 2023年03月24日 0 点赞 0 评论 135 浏览 评分:0.0
题解 2765: 计算分数的浮点数值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a = 0.0; int b = 0.0; double c = 0; scanf("%d %d", &…… 题解列表 2023年02月27日 0 点赞 0 评论 192 浏览 评分:0.0
222222222222222222222222222222222222 摘要:解题思路:注意事项:参考代码:编写题解 2765: 计算分数的浮点数值编写题解 2765: 计算分数的浮点数值编写题解 2765: 计算分数的浮点数值编写题解 2765: 计算分数的浮点数值编写题解 …… 题解列表 2024年01月15日 0 点赞 0 评论 85 浏览 评分:0.0
2765: 计算分数的浮点数值 摘要:解题思路:直接算注意事项:无参考代码:#include<iostream> #include<iomanip> using namespace std; int main() { d…… 题解列表 2022年10月22日 0 点赞 0 评论 386 浏览 评分:6.0
2765 计算分数的浮点数值 摘要:解题思路:注意事项:double参考代码:#include<stdio.h>int main(){ double a; double b; scanf("%lf %lf", &a, &b); prin…… 题解列表 2022年11月03日 0 点赞 0 评论 554 浏览 评分:8.0