题解 2765: 计算分数的浮点数值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2765:计算分数的浮点数值

摘要:解题思路:本题解题关键在于后期要把整型a,b转变为浮点型参加除法运算。注意事项:参考代码:#include<stdio.h>intmain(){inta,b;doublec;scanf(&……

计算分数的浮点数值

摘要:解题思路:注意事项:a,b记得用double参考代码:#include<stdio.h>intmain(){&nbsp;&nbsp;doublea,b;&nbsp;……

模仿范例改的

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){&nbsp;&nbsp;doublea,b;&nbsp;&nbsp;if……